📅  最后修改于: 2022-03-11 14:48:09.209000             🧑  作者: Mango
// OutlineButton is deprecated. Use OutlinedButton in place (notice the -d)
OutlinedButton(
style: ButtonStyle(
overlayColor: MaterialStateProperty.resolveWith(
(state) => Colors.red)),
child: Text('Fermer'),
onPressed: () {
Navigator.of(context).pop();
},