06-Flutter 容器类组件

容器类组件

  • Padding 留边距
  • Container 容器-内外边距,宽高
  • 装饰器Decoration 容器样式修改 BoxDecoration,ShapeDecoration,UnderlineTabIndicator等
  • 约束Constraints 容器大小限制 ConstrainedBox,SizedBox,AspectRatio等
  • 裁切类容器:ClipOval,ClipRRect,ClipRect
  • Scaffold 页面骨架

Padding 内边距

Padding(
   child: Text("AAAAAAAA"),
   padding: EdgeInsets.fromLTRB(10,100, 30, 80),//依次为左,上,右,下设置边距
),

还可以使用以下方式快速添加边距,适应不同场景的需求

padding: EdgeInsets.all(10),//4个边都留10边距
padding: EdgeInsets.only(left: 10,bottom: 20),//可选参数,指定哪条边留边距
padding: EdgeInsets.symmetric(vertical: 10,horizontal: 20),//可选参数,上下边距10,左右边距20

Container 容器-内外边距,宽高

Container(
        width: 300,//容器宽
        height: 200,//容器高
        padding: EdgeInsets.all(20),//内边距
        margin: EdgeInsets.all(20),//外边距
//        color: Colors.red,//背景色,和decoration属性互斥,只能设置一个,否则会报错
        //装饰器
//        decoration: ShapeDecoration(color: Colors.red, shape: CircleBorder()),
        decoration: BoxDecoration(
          color: Colors.blue,//背景颜色
          borderRadius: BorderRadius.circular(20), //圆角
          boxShadow: <BoxShadow>[
            BoxShadow(
              color: Colors.black26, //阴影的颜色
              blurRadius: 10, //虚化的宽度
              spreadRadius: 10, //阴影和原物大小的差值--不包括虚化的部分
              offset: Offset(40, 40), //阴影的偏移量
            ),
          ],
        ),
        //容器约束-大小限制
        constraints: BoxConstraints(
          minHeight: 100,
          minWidth: 100,
          maxWidth: 200,//这里限制了200,所以上面设置的宽度300无效
          maxHeight: 150,
        ),
        child: Text("AAAAAAAA"),
      ),
widget_container.png

装饰器Decoration

上面Conatiner中用到了一个BoxDecoration,用于装饰Container容器的样式,圆角,背景色,阴影等,其实Container内部使用的是DecoratedBox,只是进行了一次封装,方便使用。Flutter除了提供BoxDecoration,还有ShapeDecoration,UnderlineTabIndicator,FlutterLogoDecoration,他们都是Decoration的子类。

约束Constraints

约束容器的大小,上面代码中的Container限制了最大最小的宽高,内部实现也是进行了一次封装,使用的是ConstrainedBox,另外Flutter还提供了SliverConstraints,在滚动布局中进行约束

如果不使用Container,直接使用DecoratedBox和ConstrainedBox也是可以的,自己去实现child,如下使用:

DecoratedBox(                                   
  decoration: BoxDecoration(                    
    //背景颜色                                      
    color: Colors.blue, //圆角                    
    borderRadius: BorderRadius.circular(20),    
    boxShadow: <BoxShadow>[                     
      BoxShadow(                                
        color: Colors.black26, //阴影的颜色          
        blurRadius: 10, //虚化的宽度                 
        spreadRadius: 10, //阴影和原物大小的差值--不包括虚化的部分
        offset: Offset(40, 40), //阴影的偏移量        
      ),                                        
    ],                                          
  ),                                            
  child: Text("AAAAAAAA"),                      
), 
ConstrainedBox(
  constraints: BoxConstraints(
    minHeight: 100,
    minWidth: 100,
    maxWidth: 200, //这里限制了200,所以上面设置的宽度300无效
    maxHeight: 150,
  ),
  child: Container(
    color: Colors.red,
    width: 100,
    child: Center(child: Text("AAAAAAA")),
  ),
),

尺寸限制容器:ConstrainedBox,SizedBox,AspectRatio等

ConstrainedBox:大小约束
SizedBox:指定大小的容器
UnconstrainedBox:解除父容器大小限制
AspectRatio:指定比例
他们都是SingleChildRenderObjectWidget的子类,都只有一个child widget。

Container(
  margin: EdgeInsets.only(top: 10),
  child: SizedBox(
    width: 100,
    height: 100,
    child: Container(
      color: Colors.red,
      width: 50,//这里设置无效
      height: 200,//这里设置无效
      child: Center(child: Text("AAAAAAA")),
    ),
  ),
),
widget_sizebox.png
Container(
  margin: EdgeInsets.only(top: 20),
  width: 100, //指定宽为100
  child: AspectRatio(
    aspectRatio: 0.5, //父容器宽为100,宽高比为0.5,则高度为200
    child: Container(
      color: Colors.red,
      child: Text(
          "11111111111111111111111111111111111111111111111111111111111111111111111111111"
          "11111111111111111111111111111111111111111111111111111111111111111111111111"
          "11111111111111111111111111111111111111111111111111111111111111111111111111"),
    ),
  ),
),
widget_aspectratio.png

裁切类容器:ClipOval,ClipRRect,ClipRect

圆形头像,圆角矩形,矩形裁切

ClipOval(
  child: Image.network(
    IMAGE_0,
    fit: BoxFit.cover,
    width: 50,
    height: 50,
  ),
),
ClipRect(
  child: Container(
    color: Colors.black12,
    child: Image.network(
      IMAGE_0,
      fit: BoxFit.cover,
      width: 100,
      height: 100,
    ),
  ),
),
Container(
  margin: EdgeInsets.only(top: 10),
  child: ClipRRect(
    borderRadius: BorderRadius.all(
      Radius.circular(30),
    ),
    child: Container(
      color: Colors.black12,
      child: Image.network(
        IMAGE_0,
        fit: BoxFit.cover,
        width: 200,
        height: 200,
      ),
    ),
  ),
)
widget_clip.png

Scaffold 骨架容器

完整的骨架容器包含了

顶部导航栏:appBar
内容体:body
左侧和右侧的抽屉:drawer、endDrawer
底部菜单导航:bottomNavigationBar
悬浮按钮:floatingActionButton

widget_scaffold.png
Scaffold(
    //顶部导航
    appBar: AppBar(
      leading: Builder(
        builder: (BuildContext context) {
          return IconButton(
            icon: const Icon(Icons.menu),
            onPressed: () => {
              //点击左上角的按钮
              Scaffold.of(context).openDrawer()
            },
          );
        },
      ),
      title: Text("Scaffold的使用"),
      actions: <Widget>[
        IconButton(
          icon: Icon(Icons.folder_shared),
          onPressed: () => {},
        ),
        IconButton(
          icon: Icon(Icons.share),
          onPressed: () => {},
        ),
      ],
      bottom: TabBar(
        controller: _tabController,
        tabs: tabs.map((e) => Tab(text: e)).toList(),
      ),
    ),
    //内容体
    body: TabBarView(
      controller: _tabController,
      children: <Widget>[
        Center(child: Text(tabs[0])),
        Center(child: Text(tabs[1])),
        Center(child: Text(tabs[2])),
      ],
    ),
    //左边抽屉
    drawer: Container(
      width: 250,
      color: Colors.white,
      child: Center(
        child: FlatButton(
          child: Text("左侧抽屉"),
          onPressed: () => {},
        ),
      ),
    ),
    //右边抽屉
    endDrawer: Drawer(
      child: MediaQuery.removePadding(
        context: context, // removeTop: true,//移除抽屉菜单顶部默认留白
        child: ListView(
          children: <Widget>[
            ListTile(leading: const Icon(Icons.add), title: const Text('Add account0')),
            ListTile(leading: const Icon(Icons.add), title: const Text('Add account1')),
            ListTile(leading: const Icon(Icons.add), title: const Text('Add account2')),
            ListTile(leading: const Icon(Icons.add), title: const Text('Add account3')),
          ],
        ),
      ),
    ),
    //底部菜单导航
    bottomNavigationBar: BottomNavigationBar(
      currentIndex: index,
      onTap: (i) => {
        setState(() {
          index = i;
        })
      },
      items: <BottomNavigationBarItem>[
        BottomNavigationBarItem(icon: Icon(Icons.map), title: Text(tabs[0])),
        BottomNavigationBarItem(icon: Icon(Icons.map), title: Text(tabs[1])),
        BottomNavigationBarItem(icon: Icon(Icons.map), title: Text(tabs[2])),
      ],
    ),
    floatingActionButton: FloatingActionButton(
      child: Icon(Icons.add),
      onPressed: () => {},
    ),
);
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,271评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,275评论 2 380
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,151评论 0 336
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,550评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,553评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,559评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,924评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,580评论 0 257
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,826评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,578评论 2 320
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,661评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,363评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,940评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,926评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,156评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,872评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,391评论 2 342