可以将floatingActionButton
上移50个像素吗?
我在使用floatingActionButton
的应用程序中有一个firebase_admob
,并且广告横幅重叠在floatingActionButton
的顶部。
如何将floatingActionButton
设置为距离屏幕底部50个像素?
从floatingActionButton
的documentation中,我似乎无法挑选出如何放置按钮。
最佳答案
将FloatingActionButton
包裹在Padding内,然后添加所需的大小:
floatingActionButton: Padding(
padding: const EdgeInsets.only(bottom: 50.0),
child: FloatingActionButton(
child: Icon(Icons.remove),
onPressed: () => null,
),
),
关于flutter - flutter 将floatActionButton向上移动50像素,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/54172437/