flutter column align item bottom code example
Example: 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
],
);