【发布时间】:2021-10-23 06:43:15
【问题描述】:
这是我的平面按钮。如何使用 textButton 或提升按钮解决?
Center(
child: FlatButton(
onPressed: () { },
child: Container(
margin:EdgeInsets.only(top: 25),
child: image != null
? Image.file(image,width:140,height:192,fit:BoxFit.fill)
: Container(
width: 240,
height: 200,
child: Icon(Icons.camera_front, size: 100, color:Colors.grey,)
),
),
),
),
【问题讨论】:
标签: flutter dart deprecated flatbutton