underline text flutter code example
Example 1: underline text in flutter
Text(
'Hello world',
style: TextStyle(
decoration: TextDecoration.underline,
),
)
Example 2: text line through flutter
Text('\$8.99', style: TextStyle(decoration: TextDecoration.lineThrough))
Example 3: text underline flutter
Text(
'Hello world',
style: TextStyle(
decoration: TextDecoration.underline,
),
)