Answers for "how to add column in bottom in flutter"

5

flutter center row

mainAxisAlignment: MainAxisAlignment.center //Center Column contents vertically,
Posted by: Guest on September-25-2020
-1

align bottom flutter

// Use Align if have only one child, if have multiple:
return Column(
  crossAxisAlignment: CrossAxisAlignment.center,
  mainAxisSize: MainAxisSize.max,
  mainAxisAlignment: MainAxisAlignment.end,
  children: <Widget>[
      //your elements here
  ],
);
Posted by: Guest on August-02-2020

Code answers related to "how to add column in bottom in flutter"

Browse Popular Code Answers by Language