📜  颤动轮廓按钮覆盖 - Dart 代码示例

📅  最后修改于: 2022-03-11 14:48:09.209000             🧑  作者: Mango

代码示例1
// 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();
   },