- 21 Jan, 2022 1 commit
-
-
Michael Goderbauer authored
-
- 15 Dec, 2021 1 commit
-
-
嘟囔 authored
-
- 02 Apr, 2021 1 commit
-
-
Sam Rawlins authored
-
- 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
-
- 23 Jan, 2021 1 commit
-
-
Jonah Williams authored
-
- 21 Jan, 2021 1 commit
-
-
Kenzie Schmoll authored
-
- 16 Sep, 2020 2 commits
-
-
Michael R Fairhurst 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.
-
- 31 Aug, 2020 2 commits
-
-
Mehmet Fidanboylu authored
This reverts commit c8f234d3.
-
- 29 Aug, 2020 1 commit
-
-
Jonah Williams authored
This reverts commit eef0050d.
-
- 28 Aug, 2020 2 commits
-
- 27 Aug, 2020 1 commit
-
-
Ben Konyi authored
This change re-enables DDS and outputs the DDS URI in place of the VM service URI on the console. If --disable-dds is not provided, --host-vmservice-port will be used to determine the port for DDS rather than the host port for the VM service, which will instead be randomly chosen.
-
- 29 Jul, 2020 2 commits
-
-
Ben Konyi authored
Devtools doesn't currently support connections to DDS. Disable DDS temporarily while a solution is worked on. See https://github.com/flutter/flutter/issues/62507
-
- 21 Jul, 2020 2 commits
-
- 20 Jul, 2020 2 commits
-
- 16 Jul, 2020 2 commits
-
- 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
- 24 Jun, 2020 1 commit
-
-
Jonah Williams authored
The vm_service_integration test flake is caused by trying to call the method before the framework is initialized (and the extension added). The run errors failure is caused by the error taking some time to propagate to the harness
-
- 18 Jun, 2020 1 commit
-
-
Jonah Williams authored
A frequent request from the last Flutter developer survey was for an easier method of testing light/dark mode changes. Currently, a user needs to manually change the theme settings or adjust phone settings to see the difference. Instead we should add a toggle from the CLI, and eventually devtools/Intellij/Vscode that allows developers to override the current setting. Fixes #59495 Adds flutter.ext.brightnessOverride service protocol which either queries the current platform brightness, or overrides it to a new value. This accepts either Brightness.light or Brightness.dark as a value. Adds a CLI toggle b which allows the setting to be toggled manually. Requires an update to the MediaQuery, to conditionally use a debug override when not in release mode
-
- 27 May, 2020 1 commit
-
-
Jonah Williams authored
-
- 14 May, 2020 1 commit
-
-
Zachary Anderson authored
-
- 04 May, 2020 1 commit
-
-
Devon Carew authored
-
- 14 Apr, 2020 1 commit
-
-
Jonah Williams authored
-