Answers for "how to break text line in flutter"

3

text line through flutter

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

flutter new line text

Text(
              'Hello,  \n How are you?',
              textAlign: TextAlign.center,
              overflow: TextOverflow.ellipsis,
              style: TextStyle(fontWeight: FontWeight.bold),
            )
Posted by: Guest on August-17-2021

Browse Popular Code Answers by Language