Align Bottom In Stack Flutter 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 ], );
Comments
Post a Comment