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