Answers for "flexbox flutter"

5

flutter flex

Row(
  children:[
    Expanded(
      flex: 9,
      child: Container(
              color: Colors.red,
              child: Text(
            'Flex 9'
          ),), //Replace with your child widget
          ),
    Expanded(
      flex: 3,
      child:  Container(
              color: Colors.red,
        child: Text(
            'Flex 3'
          ),
      ), //Replace with your child widget
      ),
  ],
)
Posted by: Guest on May-20-2021
0

align column to center of flex flutter

// If you want the whole table to be Centered, use the mainAxisAlignment property of Column.
///Column
mainAxisAlignment: MainAxisAlignment.center //Center Column contents vertically,
crossAxisAlignment: CrossAxisAlignment.center //Center Column contents horizontally,

///Row
mainAxisAlignment: MainAxisAlignment.center //Center Row contents horizontally,
crossAxisAlignment: CrossAxisAlignment.center //Center Row contents vertically,
Posted by: Guest on August-28-2020

Browse Popular Code Answers by Language