-
-
Notifications
You must be signed in to change notification settings - Fork 475
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
🐛 Wrong disabled color for FilledButton #207
Labels
bug
Something isn't working
Comments
Can you post a reproducible code sample? |
Column(
children: [
FilledButton(child: Text("FilledButton"), onPressed: null),
Button(child: Text("Button"), onPressed: () {}),
],
); |
Weird. FilledButton should be colored |
The |
There is no hover color either, for FilledButton. |
I will send a PR now |
6 tasks
# for free
to join this conversation on GitHub.
Already have an account?
# to comment
Describe the bug
When a
FilledButton
is disabled. It looks identical to aButton
which is active. It makes it hard for the user to know that they cannot press the button.I guess the correct color would be the colors used here:
https://developer.microsoft.com/en-us/fluentui#/controls/web/button
The text was updated successfully, but these errors were encountered: