Flutter Align To Bottom Of Container Code Example


Example 1: flutter move container to top center


Center(  child: Container( alignment: Alignment(0.0, -1.0),  ),);

Example 2: 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

Popular posts from this blog

Converting A String To Int In Groovy

"Cannot Create Cache Directory /home//.composer/cache/repo/https---packagist.org/, Or Directory Is Not Writable. Proceeding Without Cache"

Android How Can I Convert A String To A Editable