有没有办法在子窗口小部件底部禁用SafeArea?
如果我有类似的东西:

SafeArea(
   child: SecondWidget(),
)
是否可以在SecondWidget()中禁用SafeArea的底部?还是有一种方法只能为SafeArea的底部设置背景色?

最佳答案

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

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

10-08 03:40