-
Notifications
You must be signed in to change notification settings - Fork 28.9k
Closed
Labels
a: qualityA truly polished experienceA truly polished experiencef: material designflutter/packages/flutter/material repository.flutter/packages/flutter/material repository.frameworkflutter/packages/flutter repository. See also f: labels.flutter/packages/flutter repository. See also f: labels.
Description
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.
tevjef, dshukertjr, jbitsch, dbacinski, iNima and 5 more
Metadata
Metadata
Assignees
Labels
a: qualityA truly polished experienceA truly polished experiencef: material designflutter/packages/flutter/material repository.flutter/packages/flutter/material repository.frameworkflutter/packages/flutter repository. See also f: labels.flutter/packages/flutter repository. See also f: labels.