flutter line under text 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,
),
)