码迷,mamicode.com
首页 > 其他好文 > 详细

[flutter-06] Column

时间:2021-06-02 20:01:04      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:ext   url   padding   image   title   垂直   pad   des   order   

1. Column

  • 垂直组件排版
  • 组件内小控件间距可以通过SizedBox设置
  • 整个组件内的间距可以通过padding设置
Widget build(BuildContext context) {
    return Container( // 通过Container包裹起来
      padding: const EdgeInsets.all(10), // 整个Column的四周间距
      decoration: BoxDecoration( // 边框修饰
        border: Border.all(),
        color: Colors.blue, // 边框颜色
      ),
      child: Column(
        children: [
          Text(
            title,
            style: TextStyle(fontSize: 20),
          ),
          SizedBox( // 设置每个单元的小部件的间距
            height: 5,
          ),
          Text(
            description,
            style: TextStyle(fontSize: 15),
          ),
          SizedBox(
            height: 10,
          ),
          Image.network(imageUrl),
        ],
      ),
    );
  }

[flutter-06] Column

标签:ext   url   padding   image   title   垂直   pad   des   order   

原文地址:https://www.cnblogs.com/comefromchina/p/flutter-column.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!