Flutter 布局控件 widget 位置与大小

发布于 2024-11-25 07:58:53 字数 2738 浏览 8 评论 0

居中元素 Center

Center widget 可以将它的子 widget 同时以水平和垂直方向居中。

final container = Container(
  // grey box
  width: 320,
  height: 240,
  color: Colors.grey[300],
  child: Center(
    child: Text(
      'Lorem ipsum',
      style: bold24Roboto,
    ),
  ),
);

设置绝对位置 Stack | Positioned

默认情况下,widget 相对于其父元素定位。

使用 Positioned widget 的 x-y 坐标指定一个 widget 的绝对位置,另外, Positioned 需被放在一个 Stack widget 中。

final container = Container(
  // grey box
  width: 320,
  height: 240,
  color: Colors.grey[300],
  child: Stack(
    children: [
      Positioned(
        // red box
        left: 24,
        top: 24,

        child: Container(
          child: Text(
            'Lorem ipsum',
          ),
        ),
      ),
    ],
  ),
);

旋转缩放元素 Transform

想要旋转一个 widget,将它放在 Transform widget 中。

使用 Transform widget 的 alignmentorigin 属性分别来指定转换原点(支点)的相对和绝对位置信息。

对于简单的 2D 旋转,例如在 Z 轴上旋转的,创建一个新的 Matrix4 对象,并使用它的 rotateZ() 方法以弧度单位(角度 × π / 180)指定旋转系数。

final container = Container(
  // grey box
  width: 320,
  height: 240,
  color: Colors.grey[300],
  child: Center(
    child: Transform(
      alignment: Alignment.center,
      transform: Matrix4.identity()..rotateZ(15 * 3.1415927 / 180),
      child: Container(
        child: Text(
          'Lorem ipsum',
          style: bold24Roboto,
          textAlign: TextAlign.center,
        ),
      ),
    ),
  ),
);

当你缩放一个父 widget 时,它的子 widget 也会相应被缩放。

final container = Container(
  // grey box
  width: 320,
  height: 240,
  color: Colors.grey[300],
  child: Center(
    child: Transform(
      alignment: Alignment.center,
      transform: Matrix4.identity()..scale(1.5),
      child: Container(
        child: Text(
          'Lorem ipsum',
          style: bold24Roboto,
          textAlign: TextAlign.center,
        ),
      ),
    ),
  ),
);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

关于作者

烛影斜

暂无简介

文章
评论
24 人气
更多

推荐作者

18058794968

文章 0 评论 0

未名湖

文章 0 评论 0

断舍离

文章 0 评论 0

文章 0 评论 0

cyay10

文章 0 评论 0

qq_RdefO0

文章 0 评论 0

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文