【发布时间】:2020-02-24 21:44:00
【问题描述】:
我尝试了这个并在它们中间的容器中使对话框颜色透明,但我不知道如何使半径到容器的角落
Dialog alert = Dialog(
elevation: 0,
backgroundColor: Colors.greenAccent,
//backgroundColor: hexToColor('#f26937'),
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.all(Radius.circular(8.0)),
),
//title: Text("My title"),
child:
ClipRRect(
borderRadius: BorderRadius.all(Radius.circular(1.0)),
child:Container(
margin: EdgeInsets.only(right: width-54-232,left: width-54-232),
color: hexToColor('#f26937'),
height: 120,
width: 120,
child : Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
SizedBox(
child: CircularProgressIndicator(
//backgroundColor: Colors.white,
valueColor: new AlwaysStoppedAnimation<Color>(Colors.white),
),
height: 54.0,
width: 54.0,
)
],)
),)
【问题讨论】:
标签: android flutter flutter-layout