flutter
flutter copied to clipboard
Flutter makes it easy and fast to build beautiful apps for mobile and beyond
Now that https://dart-review.googlesource.com/c/sdk/+/354460 has landed, DevTools server (or DDS depending on how DDS is started) will spawn the Dart Tooling Daemon (DTD). We need a way to access this URI...
The post-submit test builder `Linux web_long_running_tests_2_5` had a flaky ratio 2.04% for the past (up to) 100 commits, which is above our 2.00% threshold. One recent flaky example for a...
We should do this on LUCI. This https://github.com/flutter/flutter/pull/77100/files shows what it would look like for Cirrus (where we could do it as well, if we do it on LUCI, but...
There are instances were it seems notification center widgets are taking a lot of CPU, see #95582 . Look at disabling notification center to reduce errant cpu use. Note: `launchctl...
fixes [DropdownMenu TrailingIcon can't be styled through providing an IconButtonTheme](https://github.com/flutter/flutter/issues/145081) ### Code sample expand to view the code sample ```dart import 'package:flutter/material.dart'; void main() => runApp(const MyApp()); class MyApp extends...
fixes [[`DataTable`] Unable to center the label of a DataColumn without side effects](https://github.com/flutter/flutter/issues/143340) ### Code sample expand to view the code sample ```dart import 'package:flutter/material.dart'; void main() => runApp(const MyApp());...
If you run the following using `flutter test --enable-impeller`, you get a `test.png` containing a hollow square with the top left corner damaged, but it should just be a hollow...
I think we should run [generate_gradle_lockfiles](https://github.com/flutter/flutter/blob/1d5c2c51187e5c608f36e81d6f89c1782918ab85/dev/tools/bin/generate_gradle_lockfiles.dart) on (pre/post – idk)submit tests. ### Problems Sometimes, regenerating gradle lockfiles results in git changes. I don't think that it should be happening, i.e....
We are moving more of the infra logic into bespoke scripts that reside within the Engine itself. However, these scripts are not unit-tested, sometimes rely on environment variables that are...
Refactor add_to_app_life_cycle_tests in order to reduce testing logic in test.dart, create a suite_runners directory and allow for later implementing package:test onto add_to_app_life_cycle_tests Part of https://github.com/flutter/flutter/issues/145482 ## Pre-launch Checklist - [x]...