【发布时间】:2021-08-01 06:33:22
【问题描述】:
键盘隐藏时看起来不错,但显示时容器在它上面,它应该在后面(与容器的内容无关):
SafeArea(
child: Stack(
children: [
Column(
children: <Widget>[
Expanded(child: child!),
Container(
color: Theme.of(context).primaryColorDark,
height: 90.0,
child: NativeAdWidget(),
),
],
),
],
),
)
【问题讨论】: