Steps to Reproduce
- Create a Snackbar with an action
Scaffold
.of(context)
.showSnackBar(new SnackBar(
content: new Text('Snackbar action'),
action: new SnackBarAction(
label: 'Undo',
onPressed: () {
// do something
},
),
))
;
- Change your accent color to something dark (or the same color as the Snackbar background)
- Show the Snackbar

The only way to change the action button text is to change your accent color in your theme. If you have a dark accent color this will lead to being unable to use Snackbar actions.
Steps to Reproduce
The only way to change the action button text is to change your accent color in your theme. If you have a dark accent color this will lead to being unable to use Snackbar actions.