【问题标题】:How to draw camera screen oval draw oval as in the picture如何画相机屏幕椭圆 画椭圆如图
【发布时间】:2021-07-21 04:04:34
【问题描述】:
【问题讨论】:
标签:
flutter
flutter-layout
【解决方案1】:
你说的是这个图标吗?
Icon(Icons.camera)
【解决方案2】:
你应该试试下面的代码:
Align(
child: Container(
height: 160,
width: 90,
margin: EdgeInsets.all(20.0),
decoration: new BoxDecoration(
border: Border.all(
color: Colors.black,
width: 1.0,
),
borderRadius: new BorderRadius.all(
Radius.elliptical(
90,
170,
),
),
),
child: Text(' '),
),
),
你的输出看起来像这样 ->