Center
Posted timba1322
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Center相关的知识,希望对你有一定的参考价值。
用于使子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的主要内容,如果未能解决你的问题,请参考以下文章