textstyle underline flutter code example
Example 1: text underline flutter
Text(
'Hello world',
style: TextStyle(
decoration: TextDecoration.underline,
),
)
Example 2: TextStyle underline flutter
Text(
'Hello world',
style: TextStyle(
decoration: TextDecoration.underline,
),
)