22865 Commits

Author SHA1 Message Date
Kate Lovett
2e9e1772be
Fix for VelocityTracker deprecation (#75649) 2021-02-16 13:36:04 -08:00
engine-flutter-autoroll
a74a26c6a2
Roll Plugins from 7e9c79b22828 to 4df088098be0 (4 revisions) (#76141) 2021-02-16 13:01:04 -08:00
Jonah Williams
820fb0bf2b
[flutter_tools] stop using throttled print for service extensions (#76022) 2021-02-16 12:11:57 -08:00
Greg Spencer
f8cd24de95
Revert "ListTile Material Ripple and Shape Patch (#74373)" (#76134)
This reverts commit 422916d201b21bf9c7e65225d520029e30ab278d because it causes unexpected changes in the rendering of the background of a ListTile.
2021-02-16 11:24:17 -08:00
Jenn Magder
86a51b16f6
Mark flutter_engine_group_performance not flaky (#75892) 2021-02-16 11:04:46 -08:00
Michael Goderbauer
6afbb25a48
Reject unaccepted pointers in Drag recognizer (#75943) 2021-02-16 10:26:03 -08:00
Jonah Williams
46b8ea8fe6
[flutter_tools] use temp dir for tester dill, use desktop log reader (#75922)
On windows, its not possible to run 2 integration tests using flutter-tester simultaneously. This is due to the flutter tester using a fixed location for its dill output. Use a temp dir instead.

Also replace the custom log reader in flutter-tester with the desktop log reader, and ensure stopApp waits for the process exit code.

Fixes #75534
2021-02-16 10:18:04 -08:00
stuartmorgan
13d051f2f4
Update link for missing desktop projects (#76123) 2021-02-16 09:51:03 -08:00
engine-flutter-autoroll
f49956598b
7e9c79b22 [camera] NNBD migration of the camera plugin (flutter/plugins#3533) (#76054) 2021-02-15 21:56:06 -08:00
engine-flutter-autoroll
b2e05062b6
57a40bf15 [camera] Fixes crash on takePicture() (flutter/plugins#3537) (#76046) 2021-02-15 00:56:03 -08:00
engine-flutter-autoroll
c2ee916a5d
Roll Plugins from 10b40ddae933 to d054fa9a19bc (2 revisions) (#76034) 2021-02-14 20:01:04 -08:00
godofredoc
4597b51cbc
Fix problem causing tasks to timeout. (#76028)
This is because the command was actually collecting logs continuously
from the device. Additionally idevicesyslog does not have a reboot
option.

Bug: https://github.com/flutter/flutter/issues/76027
2021-02-14 17:28:27 -08:00
Ian Hickson
ce318b7b53
All arguments must be documented. (#75888) 2021-02-14 12:56:05 -08:00
engine-flutter-autoroll
696e4f70d1
10b40ddae Update video_player_web to point to new video_player_interface (flutter/plugins#3536) (#75985) 2021-02-13 15:31:02 -08:00
Yash Johri
21b270886e
[Checkbox] Adds shape property (#70171) 2021-02-13 12:06:03 -08:00
engine-flutter-autoroll
8104c5786d
Roll Plugins from e0262421d2c9 to aa2265664891 (2 revisions) (#75953) 2021-02-12 18:41:03 -08:00
Jonah Williams
dce8f71228
[flutter_tools] do not use context logger in gradle (#75940) 2021-02-12 17:38:52 -08:00
Todd Volkert
835c7fab45
Fix FocusManager constructor (#75894)
The FocusManager constructor was registering global event handlers
on the shared RawKeyboard instance and the global pointer router.
This posed a few problems: (1) there was no way to unregister these
handlers, and (2) instantiating a second FocusManager would overwrite
the existing focus manager's RawKeyboard handler. This was manifesting
in unexpected ways, such as the fact that constructing a second
BuildOwner (for a parallel tree, for instance) was obliterating the
event handler for the main BuildOwner's focus manager, thus messing
with focus.

This change separates those global event registrations into a
dedicated method, registerGlobalHandlers(), and overrides dispose()
to properly unregister those handlers.
2021-02-12 17:19:20 -08:00
engine-flutter-autoroll
db038a1da1
e0262421d Move plugin tools code (flutter/plugins#3544) (#75939) 2021-02-12 15:31:04 -08:00
Jonah Williams
bf132435e2
[flutter_tools] delete exit immediately test (#75927) 2021-02-12 15:28:24 -08:00
Greg Spencer
266fb87c36
Update the Focus widget to update the node's onKey handler when the widget updates (#74909)
This updates the onKey handler of the FocusNode that the Focus widget manages when the widget is updated and the handler has changed. Also added a setter for onKey to the FocusNode.
2021-02-12 14:46:39 -08:00
engine-flutter-autoroll
9d5a540cbb
Roll Plugins from acabfe66607a to 197d9761d0a3 (2 revisions) (#75932) 2021-02-12 14:26:03 -08:00
Hidenori Matsubayashi
4cc0ab2d19
[flutter_tools] Add ARM64 Linux host and cross-building option support (#61221) 2021-02-12 14:25:30 -08:00
Jonah Williams
97a9f2ae93
[flutter_tools] move gradle helper methods into AndroidBuilder class body, split unit tests (#75931) 2021-02-12 14:24:13 -08:00
Jonah Williams
fb808b40f9
[flutter_tools] add package:http to forbidden imports test (#75925) 2021-02-12 14:23:08 -08:00
engine-flutter-autoroll
486ba89318
Roll Engine from b9ecd8aca650 to 1d537824d6d2 (26 revisions) (#75921) 2021-02-12 14:21:04 -08:00
Nathan Walker
422916d201
ListTile Material Ripple and Shape Patch (#74373)
This PR replaces the ColoredBox that ListTile uses with an Ink widget. That Ink widget is given a ShapeDecoration with the ListTile's color and shape. This fixes issues where the ListTile color would obscure material ripple effects, and cause the specified shape to not be respected.
2021-02-12 14:16:51 -08:00
keyonghan
ef84970706
Mark mac_android_smoke_catalina_start_up test as unflaky (#75920) 2021-02-12 14:16:04 -08:00
godofredoc
b0aa556958
Fix dart_docs. (#75933)
flutter update-packages from the recipe was removed in favor of each
test running pub get in their dependencies.
2021-02-12 13:54:37 -08:00
Jonah Williams
980880e2b6
[flutter_tools] remove package HTTP and add pub.dev head check tests (#75871) 2021-02-12 10:44:19 -08:00
Abhishek Ghaskata
af0ea8c3db
Grammatical mistake on pull request template (#75096) 2021-02-12 09:38:25 -08:00
engine-flutter-autoroll
b957144136
Roll Engine from cdc49c575b0b to b9ecd8aca650 (2 revisions) (#75827)
* 7e48c4267 [web] Fix svg stroke when style is not provided (flutter/engine#24153)

* b9ecd8aca Always set change type to cancel with `touchesCancelled` on iOS platform view (flutter/engine#24333)
2021-02-12 09:19:40 -08:00
Ian Hickson
5652351d54
Clean up some documentation around shader warm-up. (#75863) 2021-02-12 01:41:02 -08:00
Tim Sneath
cd3246578d
Replace Gitter with Discord badge (#75893) 2021-02-11 23:27:41 -08:00
Hans Muller
9296a527b3
Revert "Removed ButtonBar from AlertDialog (#75676)" (#75873)
This reverts commit 705cebb239a05bcdf69c6eeae6d31eda7fa24895.
2021-02-11 18:33:24 -08:00
engine-flutter-autoroll
06f2303e76
Roll Plugins from 09d0f79b4f10 to acabfe66607a (3 revisions) (#75891)
* 7624d9eb7 add post merge labeler (flutter/plugins#3532)

* 31a631cb0 [wifi_info_flutter] Migrate to null safety (flutter/plugins#3425)

* acabfe666 Bump ffi dependencies (flutter/plugins#3540)
2021-02-11 17:57:49 -08:00
godofredoc
a0e8681452
Add flutter update packages to some tests. (#75530)
* Add flutter update packages to some tests.

Analyzer_benchmark and flutter_test_performance require to pub get
multiple directories. Rather than delegating the recipes to run flutter
update-packages we explicitly running on tests that need it.

Bug: https://github.com/flutter/flutter/issues/75524

* Add pub get directly on the analyis classes.

* Run flutter get in dev/tools.

* Fix directory path.

* Add more dependency directories.

* Fix typo.

* Add more dependencies.

* Add stocks dependency.

* Fix paths to some apps.

* Add more dependencies.

* Complete dependencies definition.

* More analysis dependencies.

* Add examples dependencies.

* Dev tool dependencies.

* Use update-packages for analyzer benchmark.
2021-02-11 15:30:55 -08:00
Casey Hillers
afd1d92a01
Refresh Flutter infra README (#75542) 2021-02-11 14:23:11 -08:00
gaaclarke
08ef089173
added flutter_engine_group_performance to the prod_builders (#75866) 2021-02-11 14:16:06 -08:00
Jenn Magder
ba5e237e24
Avoid duplicating Pods-Runner xcconfig #includes (#75822) 2021-02-11 14:11:15 -08:00
mx1up
cc95c972b7
properly pass on gradle exit code (#71484) (#71582) 2021-02-11 14:11:03 -08:00
Jason Simmons
236ee295bd
Create an InlineSpanSemanticsInformation only if the TextSpan has text (#75666)
Fixes https://github.com/flutter/flutter/issues/75622
2021-02-11 11:46:18 -08:00
Wyte Krongapiradee
6db3d61ed4
fix(flutter_driver): Properly declare socket as nullable (#75769) 2021-02-11 10:51:04 -08:00
Yegor
e7953b3be4
[web] new service worker loading mechanism (#75535) 2021-02-11 09:16:21 -08:00
Michael Thomsen
78ce11d7e3
Remove upper Flutter constraint (#75772) 2021-02-11 07:37:57 +01:00
Michael Thomsen
525a617886
Adust Flutter constraint (#75773) 2021-02-11 07:29:52 +01:00
engine-flutter-autoroll
a8075deea3
Roll Engine from 2488c1f135c8 to cdc49c575b0b (7 revisions) (#75824) 2021-02-10 19:46:02 -08:00
Kate Lovett
45c13702b3
Audit and update deprecation warnings (#75813) 2021-02-10 17:31:04 -08:00
Kate Lovett
6c83d84e34
Apply bottom margin to FABs that have been boosted into the Safe Area (#75809) 2021-02-10 17:26:05 -08:00
Sam Rawlins
408c092faf
Remove "unnecessary" imports in test/widgets (#75796) 2021-02-10 17:21:03 -08:00