Answers for "flutter text in row not wrapping"

0

flutter text in row not wrapping

Expanded(
            child: new Column(
              crossAxisAlignment: CrossAxisAlignment.start,
              children: <Widget>[
                new Text(_name, style: Theme.of(context).textTheme.subhead),
                new Container(
                  margin: const EdgeInsets.only(top: 5.0),
                  child: new Text(text),
                ),
              ],
            ),
Posted by: Guest on March-25-2021

Code answers related to "flutter text in row not wrapping"

Browse Popular Code Answers by Language