どうも、ちょげ(@chogetarou)です。
Containerを下寄せにする方法を紹介します。
方法

Containerを下寄せにするには、引数「alignment」に「Alignment.bottomCenter」を指定します。
Container(
alignment: Alignment.bottomCenter,
),
以下は、使用例です。
Container(
alignment: Alignment.bottomCenter,
height: 200,
width: 200,
color: Colors.yellow,
child: Text('Bottom'),
),

コメント