zoukankan      html  css  js  c++  java
  • Container

    Alignment属性,Container内child的对齐方式,也就是容器子内容的对齐方式,并不是容器本身的对齐方式。
    padding         内边距
    margin           外边距
    decoration     装饰器
    使用:
     1 body: new Center(
     2           child: new Container(
     3             child: new Text(
     4               '非淡泊无以明志,非宁静无以致远。(诸葛亮)',
     5               style: TextStyle(fontSize: 30.0),
     6             ),
     7             alignment: Alignment.topLeft,
     8              500.0,
     9             height: 200.0,
    10             //color: Colors.lightBlue,
    11             //padding: const EdgeInsets.all(10),    //内边距
    12             padding: const EdgeInsets.fromLTRB(10.0, 50.0, 0, 0),
    13             margin: const EdgeInsets.all(20.0),
    14             decoration: new BoxDecoration(
    15               gradient: const LinearGradient(
    16                   colors: [Colors.lightBlue, Colors.green, Colors.purple]
    17                   ),
    18                   border: Border.all( 5.0,color:Colors.red
    19                   ),
    20             ),
    21           ),
    22         ),
  • 相关阅读:
    从Python到Web开发
    源码安装缺少configure文件
    5
    4
    3
    2
    42
    1
    18
    41
  • 原文地址:https://www.cnblogs.com/timba1322/p/12486520.html
Copyright © 2011-2022 走看看