- 04 Oct, 2021 2 commits
-
-
Jenn Magder authored
-
xubaolin authored
-
- 02 Oct, 2021 2 commits
-
-
Christopher Fujino authored
-
Littlegnal authored
-
- 01 Oct, 2021 11 commits
-
-
stuartmorgan authored
-
Fernando Moraes authored
-
LongCatIsLooong authored
-
Ian Hickson authored
-
Kate Lovett authored
-
Kate Lovett authored
-
Kate Lovett authored
-
Ian Hickson authored
-
Hans Muller authored
-
stuartmorgan authored
Building an application for a desktop platform that transitively included any Dart-based plugins (such as path_provider) broke `flutter test`, because its compilation was overriding the provided main (in this case, the test main) with `generated_main.dart` if it was present. This PR: - Changes the `flutter test` compilation path to update `generated_main.dart`, so that the tests will work, and will include any registered Dart plugins. - Makes using `generated_main.dart` during recompile opt-in, to try to reduce the chance of a similar bug happening with other codepaths in the future. Fixes https://github.com/flutter/flutter/issues/88794
-
Christopher Fujino authored
-
- 30 Sep, 2021 5 commits
-
-
Greg Spencer authored
I've added a Focus.withExternalFocusNode constructor to the Focus widget (and the FocusScope widget) that makes it explicit that the widget's attributes won't affect the settings of the given focus node. This is to help address #83023, which is a snag in the API that people run into occasionally. This should help make it explicit when you want the widget attributes to take precedence, and when you don't.
-
Jenn Magder authored
-
Christopher Fujino authored
-
Greg Spencer authored
This modifies the flutter update-packages and flutter update-packages --force-upgrade commands so that the many invocations of "dart pub get" in each repo project run in parallel instead of in series.
-
Jenn Magder authored
-
- 29 Sep, 2021 7 commits
-
-
Hans Muller authored
-
Kenzie (Schmoll) Davisson authored
-
Kenzie (Schmoll) Davisson authored
-
Justin McCandless authored
Prevents bugs related to invalid (-1,-1) selection in keyboard shortcuts
-
nt4f04uNd authored
-
Greg Spencer authored
This reverts commit ab51a026 and fixes the test that broke the first time it landed.
-
Nicholas Shahan authored
-
- 28 Sep, 2021 7 commits
-
-
LongCatIsLooong authored
Reland "Make FilteringTextInputFormatter's filtering Selection/Composing Region agnostic" #89327 (#90211)
-
Greg Spencer authored
This reverts commit 885b2f56 to green up the build. Submitting on red to fix the build.
-
Greg Spencer authored
This adjusts the size of the delete button so that it takes up just slightly less than half of the chip, so that legacy tests that tap on the center of the chip still hit the chip, and not the delete button. A follow-on change for #90531
-
Greg Spencer authored
In the process of fixing #90044, I realized that it's also possible for hovered tooltips to show more than one at a time if the widgets are nested, so this PR is a fix that prevents more than one tooltip from showing at a time with hovered tooltips.
-
yk3372 authored
-
Greg Spencer authored
This adds a smoke test for every single API example. It also fixes 17 tests that had bugs in them, or were otherwise broken, and even fixes one actual bug in the framework, and one limitation in the framework. The bug in the framework is that NetworkImage's _loadAsync method had await response.drain<List<int>>();, but if the response is null, it will throw a cryptic exception saying that Null can't be assigned to List<int>. The fix was just to use await response.drain<void>(); instead. The limitation is that RelativePositionedTransition takes an Animation<Rect> rect parameter, and if you want to use a RectTween with it, the value emitted there is Rect?, and one of the examples was just casting from Animation<Rect> to Animation<Rect?>, which is invalid, so I modified RelativePositionedTransition to take a Rect? and just use Rect.zero if the rect is null.
-
Hans Muller authored
-
- 27 Sep, 2021 5 commits
-
-
Callum Moffat authored
-
nt4f04uNd authored
-
Aayan authored
-
David Iglesias authored
-
Jason Simmons authored
-
- 26 Sep, 2021 1 commit
-
-
MH Johnson authored
-