【问题标题】: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('     '),
              ),
            ),
      

      你的输出看起来像这样 ->

      【讨论】:

        猜你喜欢
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 2012-12-19
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        相关资源
        最近更新 更多