- 03 Aug, 2023 1 commit
-
-
chunhtai authored
This app will be use for a11y assessments. See [design doc](http://go/flutter-gar-reporting-q3-2023) (internal only)
-
- 07 Jan, 2022 1 commit
-
-
Greg Spencer authored
Updates the platform shims in dev/manual_tests so that Windows and Linux can be built. I had to update the Windows shims, because I was unable to build a Windows app there. Also updates the analyze.dart script to report all license issues simultaneously instead of just dying after the first failure. The only substantive code changes are in dev/bots/analyze.dart and dev/bots/test/analyze_test.dart
-
- 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.
-
- 25 Aug, 2021 1 commit
-
-
Greg Spencer authored
This extracts the sample code out from the API doc comments, and places them in separate files on disk, allowing running of the examples locally, testing them, and building of slightly larger examples.
-
- 28 Jun, 2021 1 commit
-
-
Filip Hracek authored
-
- 07 May, 2021 1 commit
-
-
stuartmorgan authored
-
- 01 Feb, 2021 1 commit
-
-
Robert Ancell authored
This stops them attempting to own a D-Bus name, which may not be possible if the app is sandboxed (e.g. in a Snap). It's also probably what most developers would expect is the correct behaviour by default.
-
- 29 Oct, 2020 1 commit
-
-
George Wright authored
-
- 21 Oct, 2020 1 commit
-
-
Robert Ancell authored
Fixes https://github.com/flutter/flutter/issues/68253
-
- 29 Jul, 2020 1 commit
-
-
Robert Ancell authored
-
- 23 Jun, 2020 1 commit
-
-
Robert Ancell authored
Remove Linux shell window_configuration.cc/.h It was a temporary solution while the shell was changing.
-
- 18 Jun, 2020 2 commits
-
-
Robert Ancell authored
The previous call set the minimum size, not just the initial size.
-
Robert Ancell authored
-
- 16 Jun, 2020 1 commit
-
-
stuartmorgan authored
Updates the tooling to use the GTK embedding, rather than the GLFW embedding: - Adds new requirements to `doctor` - Updates the app and plugin templates to make GTK-based runners and plugins - Stops downloading and installing the GLFW artifacts Final part of #54860, other than cleanup.
-