Answers for "How to center only one element in a row of 2 elements in flutter"

0

How to center only one element in a row of 2 elements in flutter

Row(
  children: <Widget>[
    Expanded(child: Center(child: Text('Center'))),
    Text("#"),
  ],
)
Posted by: Guest on September-23-2021

Code answers related to "How to center only one element in a row of 2 elements in flutter"

Browse Popular Code Answers by Language