Michael Goderbauer
Michael Goderbauer
https://github.com/flutter/engine/blob/main/tools/gen_locale.dart
This is a little strange and doesn't reproduce consistently, but I'll try to provide as much details as I have. In IntelliJ I have a workspace that has a bunch...
From discussion it seems like the saveLayer call is unnecessary when the drawn content is just a single path/shape. The saveLayer call should be omitted in that case. Related: https://github.com/flutter/flutter/issues/92874...
The `stless` and friends macros should generate code that uses the new super param feature if it is available. Super parameters are available when the lower SDK bound of the...
It would be nice if I could search the node hierarchy shown in the Flutter Inspector by attributes, e.g. I would like to find the node which has the property...
`prefer_const_constructors_in_immutables` only triggers when an `@immutable` class has a non-const constructor. If no constructor is explicitly defined, the lint doesn't trigger and you - unfortunately - end up with an...
The following code produces a misleading `prefer_const_constructors_in_immutables` lint: ```dart @immutable class Foo { Foo(this.list) : assert(list.length > 2); // prefer_const_constructors_in_immutables final List list; } ``` My understanding from https://github.com/flutter/flutter/issues/102460#issuecomment-1109424737 and...
I feel like the `{@endtemplate}` and the `{@end-tool}` tag should follow the same style: either both written as one word or both with a dash in between. /cc @gspencergoog
lib/core/exception_handler.dart uses "print" to log an exception. This will result in a log entry with log level "INFO" in the browser's console. That's not really appropriate for an exception, which...
### Description TickerMode [1] is used in flutter to turn off animations for a subtree. However, it appears that rive is not respecting the setting. [1] https://master-api.flutter.dev/flutter/widgets/TickerMode-class.html ### Steps To...