- 01 Jul, 2021 1 commit
-
-
Ahmed Ashour authored
-
- 14 Jun, 2021 1 commit
-
-
Greg Spencer authored
This adds avoid_dynamic_calls to the list of lints, and fixes all instances where it was violated. Importantly, this lint is NOT turned on for flutter/packages/test, because those changes are happening in another PR: #84478
-
- 01 Jun, 2021 1 commit
-
-
Alexandre Ardhuin authored
-
- 23 Apr, 2021 1 commit
-
-
Ian Hickson authored
Also, refactor internal code to do the same. See https://github.com/flutter/flutter/wiki/Style-guide-for-Flutter-repo#avoid-double-negatives-in-apis
-
- 08 Apr, 2021 1 commit
-
-
Jonah Williams authored
-
- 03 Apr, 2021 1 commit
-
-
Ben Konyi authored
-
- 19 Mar, 2021 2 commits
-
-
Michael Goderbauer authored
-
Michael Goderbauer authored
-
- 13 Mar, 2021 1 commit
-
-
Jonah Williams authored
-
- 06 Mar, 2021 1 commit
-
-
Michael Goderbauer authored
-
- 11 Feb, 2021 1 commit
-
-
Ian Hickson authored
-
- 08 Feb, 2021 1 commit
-
-
Jonah Williams authored
This reverts commit 8b6baae4.
-
- 04 Feb, 2021 1 commit
-
-
Jonah Williams authored
Our current top crasher is an unclear error when ProcessManager fails to resolve an executable path. To fix this, we'd like to being adjusting the process resolution logic and adding more instrumentation to track failures. In order to begin the process, the ProcessManager has been folded back into the flutter tool
-
- 27 Jan, 2021 1 commit
-
-
Jonah Williams authored
* opt out the flutter tool * oops EOF * fix import * Update tool_backend.dart * Update daemon_client.dart * fix more
-
- 26 Jan, 2021 1 commit
-
-
Dan Field authored
-
- 25 Jan, 2021 1 commit
-
-
Kenzie Schmoll authored
* Add connectedVmServiceUri service extension and set from flutter_tools
-
- 21 Jan, 2021 1 commit
-
-
Kenzie Schmoll authored
-
- 16 Dec, 2020 1 commit
-
-
Sam Rawlins authored
-
- 12 Nov, 2020 1 commit
-
-
Jonah Williams authored
-
- 02 Nov, 2020 1 commit
-
-
Jonah Williams authored
-
- 09 Oct, 2020 1 commit
-
-
Jonah Williams authored
If the vm of an attached device rejects a hot reload, pretty print the reason. Suggest a hot restart so that users are aware that they do not have to detach and rebuild. Also resets the last compilation time, so a subsequent restart would still apply the last change. Adds an integration test for the const field removal. Fixes #64027
-
- 05 Oct, 2020 1 commit
-
-
Jonah Williams authored
Cleans up some undocumented classes and re-organizes the AndroidDevices class to avoid the need for the static testing only member. Adds a script for tracking globals.
-
- 29 Sep, 2020 1 commit
-
-
Ben Konyi authored
-
- 19 Sep, 2020 1 commit
-
-
Jonah Williams authored
-
- 15 Sep, 2020 1 commit
-
-
Jonah Williams authored
-
- 08 Sep, 2020 1 commit
-
-
Jonah Williams authored
Integration tests must only go through the real file system/process manager/platform. The global indirection makes this code harder to understand than if it directly referred to the concrete instances that are being used. Update the integration shard to use a const instance of a LocalFIleSystem, LocalProcessManager, and LocalPlatform. Remove global usage and apply testWithoutContext.
-
- 29 Jul, 2020 1 commit
-
- 21 Jul, 2020 2 commits
-
- 20 Jul, 2020 3 commits
-
-
Helin Shiah authored
- 16 Jul, 2020 2 commits
-
- 15 Jul, 2020 1 commit
-
-
Danny Tuppeny authored
-
- 14 Jul, 2020 3 commits
-
-
Jonah Williams authored
For #61407 , we need to be able to find all widgets that of a given type. Previously I experimented with using the type name, but of course this does not handles subtypes. The actual check needs to be an is check. Since there is no way to convert a String to a Type at runtime for use in this check, we can instead evaluate an expression which assigns a closure to a field. The idea for this was inspired by how the dart devtools adds debug functionality to older versions of flutter. Since the reload feature is not complete yet, adds an integration test which simulates how it will eventually behave
- 10 Jul, 2020 2 commits
-
-
Ben Konyi authored