我想像在手机屏幕上那样使用这两个容器来工作,所以我希望有人给我写代码,因为我找到了解决这些问题的方法
答案 0 :(得分:0)
这是您的解决方案
Scaffold(
body: SingleChildScrollView(
child: Column(
children: <Widget>[
Container(
//put Your child here
),
Container( //put Your child here ),
],
),
),
);
希望这会有所帮助