Answers for "how to add text under line flutter"

14

underline text in flutter

Text(
  'Hello world',
  style: TextStyle(
    decoration: TextDecoration.underline,
  ),
)
Posted by: Guest on July-05-2020
3

text line through flutter

Text('$8.99', style: TextStyle(decoration: TextDecoration.lineThrough))
Posted by: Guest on September-23-2020

Code answers related to "how to add text under line flutter"

Code answers related to "Dart"

Browse Popular Code Answers by Language