Dưới đây là mã của tôi mà tôi mong đợi sẽ hiển thị một vùng chứa góc tròn với nền trong suốt.
return new Container(
//padding: const EdgeInsets.all(32.0),
height: 800.0,
//color: const Color(0xffDC1C17),
//color: const Color(0xffFFAB91),
decoration: new BoxDecoration(
color: Colors.green, //new Color.fromRGBO(255, 0, 0, 0.0),
borderRadius: new BorderRadius.only(
topLeft: const Radius.circular(40.0),
topRight: const Radius.circular(40.0))
),
child: new Container(
decoration: new BoxDecoration(
color: Colors.blue,
borderRadius: new BorderRadius.only(
topLeft: const Radius.circular(40.0),
topRight: const Radius.circular(40.0))
),
child: new Center(
child: new Text("Hi modal sheet"),
)
),
Tuy nhiên, đây là những gì nó hiển thị, nó hiển thị một vùng chứa màu trắng (dự kiến trong suốt) với bán kính góc tròn. Bất kỳ giúp đỡ?