-
Notifications
You must be signed in to change notification settings - Fork 28.7k
Deprecate ThemeData.selectedRowColor #109070
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
@@ -1796,7 +1808,11 @@ class ThemeData with Diagnosticable { | |||
'https://flutter.dev/docs/release/breaking-changes/toggleable-active-color#migration-guide. ' | |||
'This feature was deprecated after v2.13.0-0.4.pre.', | |||
) | |||
Color? toggleableActiveColor, | |||
Color? toggleableActiveColor,@Deprecated( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
newline needed here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think one was added while I was reviewing. Please ignore this.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
😉
buttonColor: buttonColor ?? this.buttonColor, | ||
fixTextFieldOutlineLabel: fixTextFieldOutlineLabel ?? this.fixTextFieldOutlineLabel, | ||
primaryColorBrightness: primaryColorBrightness ?? this.primaryColorBrightness, | ||
accentColor: accentColor ?? _accentColor, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added this tweak. this.<deprecatedProperty>
here does not actually allow folks to stop using it. I just found out in a test case. 😜
Will see about landing this next week, I want to run it through internal tests first. |
Internal testing passed. |
Related #91772
Pre-launch Checklist
///
).If you need help, consider asking for advice on the #hackers-new channel on Discord.