> Text(
> date,
> style: TextStyle(
> fontStyle: FontStyle.italic,
> decoration: TextDecoration.underline,
> fontWeight: FontWeight.bold,
> fontSize: 10,
> color: Colors.white ),
> ),
1. use FontStyle for making text Italic
2. use decoration for underline
under text
3. use fontWeight for bold
> Text(
> date,
> style: TextStyle(
> fontStyle: FontStyle.italic,
> decoration: TextDecoration.underline,
> fontWeight: FontWeight.bold,
> fontSize: 10,
> color: Colors.white ),
> ),
1. use FontStyle for making text Italic
2. use decoration for underline
under text
3. use fontWeight for bold