Text decoration Flutter code example
Example 1: underline text in flutter
Text(
'Hello world',
style: TextStyle(
decoration: TextDecoration.underline,
),
)
Example 2: flutter font bold
Text(
'Some text',
style: TextStyle(
fontSize: 24,
fontWeight: FontWeight.bold),
)
Example 3: how to style text in flutter
Text(
'text'
style: TextStyle(),
),