Flutter の FloatingActionButton
の位置を調整します。
margin
と padding
で可能です。
(必要な方だけで構いません。
1
2
3
4
5
6
7
8
| floatingActionButton: Container(
margin: const EdgeInsets.only(bottom: 50),
padding: const EdgeInsets.only(bottom: 50),
child: FloatingActionButton(
child: Icon(Icons.remove),
onPressed: () => null,
),
),
|
EdgeInsets の設定
EdgeInsets
には以下のようにすると複数の間隔を取ることが出来ます。
1
2
3
4
5
6
7
| floatingActionButton: Container(
margin: const EdgeInsets.only(top: 100, left:50),
child: FloatingActionButton(
child: Icon(Icons.remove),
onPressed: () => null,
),
),
|
EdgeInsets
には以下の4つが設定可能です。
参考