如何布置集装箱,我不知道W&H
only know margin left&right 15.0 top:20.0 bottom:30.0
Scaffold->Container->Column->**Container**
喜欢这个:
thx
答案 0 :(得分:0)
这应该做您想要的:
body: Column(
children: [
Expanded(
child: Container(
padding: EdgeInsets.only(
left: 15.0,
right: 15.0,
top: 20.0,
bottom: 30.0,
),
child: Center(
child: Text('child'),
),
),
),
],
),