-
Notifications
You must be signed in to change notification settings - Fork 845
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
chore: fix deprecations of Flutter 3.27.0 #2416
Conversation
@@ -17,6 +17,18 @@ Color hexToColor(String? hexString) { | |||
return Color(int.tryParse(buffer.toString(), radix: 16) ?? 0xFF000000); | |||
} | |||
|
|||
// Without the hash sign (`#`). |
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.
FYI: I used //
instead of ///
here because those comments don't count as doc comments. The preference is to either fully document something or not count it as documented, which allows us to see all APIs that miss doc comments to keep it maintainable.
For more details: https://github.com/flutter/flutter/blob/main/docs/contributing/Style-guide-for-Flutter-repo.md#answer-your-own-questions-straight-away
Description
Migrate deprecations of Flutter 3.27, fix analysis warnings, update the example's
pubspec.lock
, and update outdatedintl
constraint.Related Issues
Type of Change