Answers for "cross and main axis alignment row in flutter"

3

flutter row main axis alignment

Row(  
        crossAxisAlignment: CrossAxisAlignment.start,
        mainAxisAlignment: MainAxisAlignment.spaceAround,
        verticalDirection: VerticalDirection.up,
        textBaseline: TextBaseline.alphabetic,
        textDirection: TextDirection.ltr,
        mainAxisSize: MainAxisSize.max,
        children: [
          Text('Row 1'),
          Text('Row 2')
        ],
      ),
Posted by: Guest on August-30-2021
1

cross axis alignment flutter

crossAxisAlignment: CrossAxisAlignment.center,
Posted by: Guest on February-12-2021

Code answers related to "cross and main axis alignment row in flutter"

Browse Popular Code Answers by Language