这是我想要创建的,但是在构建右上角的刻度线/右图标时遇到了问题。
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),
),
],
),
),