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的主要内容,如果未能解决你的问题,请参考以下文章

jQuery应用 代码片段

很实用的JQuery代码片段(转)

拥有的50个CSS代码片段(上)

图片展示js特效

Cg入门19:Fragment shader - 片段级模型动态变色

UIViewPropertyAnimator 开头有短动画片段