当此文本小部件位于列表中并到达屏幕边缘时,它将移动以从屏幕边缘进行填充。
如何使其仅对父级填充而不对屏幕边缘填充
new Stack(
....
children: <Widget>[
new SafeArea(
child: new Stack(
...
child: Container
...
child: Stack
...
child: Container
...
child: Stack
...
new Container(
padding: EdgeInsets.only(left: 20, right: 20, bottom: 20),
child: new Text(title, style: TextStyle(color: Colors.white, fontSize: 28))
)
更多古玩,即使没有顶部填充,向上滚动时也会发生。 (删除填充小部件将以正常方式滚动测试)