Nate Wilson
Nate Wilson
### Describe the Bug When the Cider window isn't focused, a notification will pop up whenever a new song starts playing, which is super handy. However, clicking this notification doesn't...
## The Problem There are many places in the [Flutter repository](https://github.com/flutter/flutter/) where a class is used as a namespace, often to store many `const` values of the same type. I've...
This PR is the 8ᵗʰ step in the journey to solve issue #136139 and make the entire Flutter repo more readable. (previous pull requests: #139048, #139882, #141591, #142279, #142634, #142793,...
Previously we merged #142930, to solve issue #87061. Since then, I discovered that the keyboard input wasn't being captured after the app had been paused and resumed. After some digging,...
## Proposal If a type `T` can be inferred, then interpret `.foo` as `T.foo`. This is similar to #357, but with a broader use case: it applies to `enum`s, `static`...
## redirecting_factory ```dart // before factory Class.constructor(int a, int b, {String? c, List d = const []}) => Other.constructor(a, b, c: c, d: d); // after factory Class.constructor(int a, int...
I noticed that multiple rules on the [linter rules page](https://dart.dev/tools/linter-rules) are marked with *(Removed)*. [`prefer_mixin`](https://dart.dev/tools/linter-rules/prefer_mixin) should be removed as well, since [`class_used_as_mixin`](https://dart.dev/tools/diagnostic-messages#class_used_as_mixin) makes it irrelevant.
This pull request is step 12 in the journey to make this entire repository more readable. (previous PRs: #139048, #139882, #141591, #142279, #142634, #142793, #143293, #143496, #143634, #143812, #144580) We're...
This is just a small tweak in `pubspec.yaml`. Once this change is implemented, developers who use this plugin won't be prevented from using new linting features.
This pull request aims for improved readability, based on issue #146600. Most of the repo should be covered in this PR (aside from `flutter_tools/`, since there was a lot going...