如何在子小部件中禁用底部的SafeArea或更改其颜色?

时间:2020-08-26 11:54:49

标签: flutter dart

是否可以在子窗口小部件底部禁用SafeArea?

如果我有类似的东西:

SafeArea(
   child: SecondWidget(),
)

是否可以在SecondWidget()中禁用SafeArea的底部?还是有办法只为SafeArea的底部设置背景颜色?

1 个答案:

答案 0 :(得分:2)

是的。 SafeArea具有bottom属性,可忽略屏幕底部的系统入侵。我会这样使用它:

SafeArea(
   child: SecondWidget(),
   bottom: false
)