Answers for "create bottom in flutter"

-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 "create bottom in flutter"

Code answers related to "Dart"

Browse Popular Code Answers by Language