Answers for "flutter outline button overlay"

0

flutter outline button overlay

// 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();
   },
Posted by: Guest on February-05-2021

Code answers related to "flutter outline button overlay"

Code answers related to "Dart"

Browse Popular Code Answers by Language