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

Center

时间:2020-03-13 17:12:11      阅读:50      评论:0      收藏:0      [点我收藏+]

标签:return   etc   span   ret   color   属性   宽度   居中   his   

用于使子Widget居中的Widget。包含三个属性:

  • widthFactor

    宽度因子,表示为该Widget宽度比子Widget宽度的倍数。

  • heightFactor

    高度因子,表示为该Widget高度比子Widget高度的倍数。

  • child

    包含的子Widget。

Widget getCenter() {
    return Container(
      color: Colors.grey,
      child: Center(
        widthFactor: 3,
        heightFactor: 2,
        child: Container(
          width: 100,
          height: 100,
          alignment: Alignment.center,
          color: Colors.redAccent,
          child: Text(‘This is Center widget demo‘),
        ),
      ),
    );
  }

 

Center

标签:return   etc   span   ret   color   属性   宽度   居中   his   

原文地址:https://www.cnblogs.com/timba1322/p/12487531.html

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