UI面临的问题[FLUTTER]

时间:2020-07-05 21:02:09

标签: flutter flutter-layout flutter-animation

enter image description here

这是我想要创建的,但是在构建右上角的刻度线/右图标时遇到了问题。

Container(
      padding: EdgeInsets.symmetric(horizontal: 20, vertical: 20),
      decoration: BoxDecoration(
          border: Border.all(color: Color(0xFFFAD02E), width: 5),
          // color: Colors.green,
          borderRadius: BorderRadius.circular(20.0)),
      child: Column(
        children: <Widget>[
          Text(
            price,
            style: TextStyle(fontSize: 30, fontWeight: FontWeight.w500),
          ),
          SizedBox(
            height: 5,
          ),
          Text(
            duration,
            style: TextStyle(fontSize: 20),
          ),
        ],
      ),
    ),

1 个答案:

答案 0 :(得分:1)

我试图实现它,这是它的样子:
enter image description here

这里是DartPad

这可能不是最好的方法,但至少可以奏效!
希望我的回答有帮助!