有没有办法使小部件(例如按钮)仅在悬停时可见?我想设法在图像悬停时在图像上显示编辑按钮。
Stack(
children: <Widget>[
Image.asset(
'assets/profileimg/empty.jpg',
width: 110.0,
height: 110.0,
),
Positioned(
bottom: -2,
left: 5,
child: RaisedButton(
child: Text('Edit...'),
onPressed: null,
),
),
],
),
谢谢你。