颤振形状重叠屏幕宽度

时间:2020-09-06 15:16:50

标签: flutter dart shapes overlap

如何使形状(或与此有关的任何小工具)重叠在手机屏幕的两侧?


我已经附上了一张图片,显示了我的意思。

到目前为止,这是我的代码:

Container(
                  width: 900.0,
                  height: 900.0,
                  decoration: new BoxDecoration(
                    color: Colors.orange,
                    shape: BoxShape.circle,
                  ),
                ),

不,我没有说要增加1000的大小,而是保持不变


enter image description here

enter image description here

2 个答案:

答案 0 :(得分:1)

添加具有适当的Transform属性的scale小部件,并删除height中的widthContainer

Transform.scale(
  scale: 1.7,
  child: Container(
    decoration: new BoxDecoration(
      color: Colors.orange,
      shape: BoxShape.circle,
    ),
  ),
)

答案 1 :(得分:1)

我刚刚修改了答案。

Transform.scale(
      scale: 1.4,
      child: Center(
        child: Container(
          width: 900.0,
          height: 900.0,
          decoration: new BoxDecoration(
            color: Colors.orange,
            shape: BoxShape.circle,
          ),
        ),
      ),
    )