Answers for "flutter expand text"

1

how to make a text expand flutter

Wrap(
  direction: Axis.vertical, //Vertical || Horizontal
  children: <Widget>[
    Text(
      'Your Text',
      style: TextStyle(fontSize: 30),
    ),
    Text(
      'Your Text',
      style: TextStyle(fontSize: 30),
    ),
  ],
),
Posted by: Guest on September-13-2021

Browse Popular Code Answers by Language