如何布置集装箱,我不知道W&H

时间:2018-07-20 10:48:09

标签: flutter

如何布置集装箱,我不知道W&H

only know margin  left&right 15.0     top:20.0    bottom:30.0

Scaffold->Container->Column->**Container**

喜欢这个:

enter image description here

thx

1 个答案:

答案 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'),                 
          ),                                      
        ),                                        
      ),                                          
    ],                                            
  ),