见下图
我想创建一个具有与图像相同的自定义形状的容器(或其他小部件)。 我不想创造内容,只想创造形状。 这不是
BorderRadius
,因为这些边是弯曲的。(我想像该图像一样创建这个边)。
我更喜欢在没有 CustomPaint
的情况下实现。
谢谢你
它完全是边框半径,兄弟只需尝试宽度和高度
Align(
child: Container(
height: 50,
width: 100,
margin: EdgeInsets.only(top: 40, left: 40, right: 40),
decoration: new BoxDecoration(
color: Colors.green,
border: Border.all(color: Colors.black, width: 0.0),
borderRadius: new BorderRadius.all(Radius.elliptical(100, 50)),
),
child: Text(' '),
),
),
我们可以使用
figma_squircle: ^0.5.3
创建该用户界面。