Answers for "how to give text with line in flutter"

1

text overflow in new line in flutter

Row(
     children: [
                Flexible(
                  child: Text('Add long text here',
                  maxLines: 1,
                  softWrap: false,
                  overflow: TextOverflow.fade,
                  ),
                ),
              ],
            )
Posted by: Guest on November-05-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

Code answers related to "how to give text with line in flutter"

Browse Popular Code Answers by Language