- 27 Apr, 2022 1 commit
-
-
Phil Quitslund authored
-
- 03 Feb, 2022 1 commit
-
-
Ian Hickson authored
-
- 03 Nov, 2021 1 commit
-
-
Konstantin Scheglov authored
-
- 28 Sep, 2021 1 commit
-
-
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.
-
- 03 Aug, 2021 1 commit
-
-
Darren Austin authored
-
- 15 Jul, 2021 1 commit
-
- 14 Jul, 2021 3 commits
-
-
Ian Hickson authored
-
Zachary Anderson authored
This reverts commit 31de052e.
-
Ian Hickson authored
-
- 13 Jul, 2021 2 commits
-
-
Ian Hickson authored
This reverts commit e2490f29.
-
Ian Hickson authored
-
- 30 Mar, 2021 1 commit
-
-
Dan Field authored
-
- 06 Mar, 2021 1 commit
-
-
Michael Goderbauer authored
-
- 02 Feb, 2021 1 commit
-
-
Sam Rawlins authored
In each library where an import is removed, the library uses some elements provided by the import, BUT there is another import which provides all of the same elements, and at least one more which the library uses. In this change, we remove the imports which can be simply removed in favor of the other already present imports. See https://github.com/dart-lang/sdk/issues/44569 for more information.
-
- 06 Oct, 2020 1 commit
-
-
Michael Goderbauer authored
-
- 22 Sep, 2020 1 commit
-
-
Dan Field authored
Remove fake image implementations, add createTestImage to flutter_test
-
- 21 Aug, 2020 1 commit
-
-
Jonah Williams authored
More work towards removal of mockito to facilitate strong null safety tests. #62886
-
- 26 Jun, 2020 1 commit
-
-
Dan Field authored
-
- 23 Jun, 2020 1 commit
-
-
Dan Field authored
* Make upscaling images opt-in
-
- 11 Jun, 2020 1 commit
-
-
Alexandre Ardhuin authored
* add language version 2.8 in packages/flutter * enable non-nullable analyzer flag
-
- 18 May, 2020 1 commit
-
-
Ferhat authored
-
- 08 May, 2020 1 commit
-
-
Ian Hickson authored
-