engine-flutter-autoroll
0272047e87
Roll Engine from bccb3a57eb3e to bd250bdd8178 (5 revisions) ( #90901 )
...
* 1b5b3c0b0 Roll Skia from 43264640f256 to 791c0d36a6f6 (2 revisions) (flutter/engine#28909 )
* d3f17b01d Mirror master to main branch. (flutter/engine#28896 )
* 8f964925e Roll Dart SDK from f452a6585cbd to 280a0c3efb21 (1 revision) (flutter/engine#28910 )
* 0aee3c6d1 Roll Skia from 791c0d36a6f6 to 0f124cd7cd60 (2 revisions) (flutter/engine#28911 )
* bd250bdd8 Windows: Add dark theme support. (flutter/engine#28131 )
2021-09-29 12:41:40 -07:00
nt4f04uNd
96a63cfe48
use FadeTransition instead of Opacity where applicable ( #75110 )
2021-09-29 12:18:03 -07:00
Greg Spencer
bac1af32ee
Reland: "Fix tooltip so only one shows at a time when hovering ( #90457 )" ( #90917 )
...
This reverts commit ab51a02
and fixes the test that broke the first time it landed.
2021-09-29 08:56:52 -07:00
engine-flutter-autoroll
0f64038494
d9a4b753e Handle PurchaseStatus.restored
correctly in example. (flutter/plugins#4393) ( #90960 )
2021-09-29 08:28:06 -07:00
engine-flutter-autoroll
aaa14b8004
fe31e5292 Handle restored purchases in iOS example app (flutter/plugins#4392) ( #90938 )
2021-09-29 03:03:04 -07:00
Nicholas Shahan
3074c9e04b
Add tests for web library platform defines ( #90620 )
2021-09-28 22:08:04 -07:00
Jenn Magder
0167d99fc6
Roll ios-deploy to support new iOS devices ( #90893 )
2021-09-28 17:23:06 -07:00
LongCatIsLooong
7684f8b7c5
Reland "Make FilteringTextInputFormatter's filtering Selection/Composing Region agnostic" #89327 ( #90211 )
2021-09-28 16:48:06 -07:00
Greg Spencer
ab51a0260d
Revert "Fix tooltip so only one shows at a time when hovering ( #90457 )" ( #90909 )
...
This reverts commit 885b2f56e1
to green up the build.
Submitting on red to fix the build.
2021-09-28 15:18:53 -07:00
Greg Spencer
777463c276
Adjust size of delete button to take up at most less than half of chip. ( #90845 )
...
This adjusts the size of the delete button so that it takes up just slightly less than half of the chip, so that legacy tests that tap on the center of the chip still hit the chip, and not the delete button.
A follow-on change for #90531
2021-09-28 14:20:36 -07:00
Greg Spencer
885b2f56e1
Fix tooltip so only one shows at a time when hovering ( #90457 )
...
In the process of fixing #90044 , I realized that it's also possible for hovered tooltips to show more than one at a time if the widgets are nested, so this PR is a fix that prevents more than one tooltip from showing at a time with hovered tooltips.
2021-09-28 14:20:01 -07:00
engine-flutter-autoroll
9db0600e46
1ef440501 [file_selector] Remove custom analysis options (flutter/plugins#4382) ( #90902 )
2021-09-28 13:48:06 -07:00
Daco Harkes
2e663b2472
[bots] Print more on --verbose analyze_sample_code ( #90880 )
2021-09-28 11:08:05 -07:00
engine-flutter-autoroll
99b210f560
bccb3a57e Enable main branch. (flutter/engine#28898) ( #90891 )
2021-09-28 10:58:02 -07:00
yk3372
d2c8b62351
make Elevated&Outlined&TextButton support onHover&onFocus callback ( #90688 )
2021-09-28 10:51:14 -07:00
engine-flutter-autoroll
a16b826385
6a2143305 Roll Skia from f2fb26d162b9 to 43264640f256 (2 revisions) (flutter/engine#28908) ( #90884 )
2021-09-28 09:53:04 -07:00
Greg Spencer
ab2b0851a2
Add smoke tests for all the examples, fix 17 broken examples. ( #89021 )
...
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.
2021-09-28 09:32:06 -07:00
engine-flutter-autoroll
d508a247be
f63395d86 [flutter_plugin_tools] Check licenses in Kotlin (flutter/plugins#4373) ( #90878 )
2021-09-28 07:28:05 -07:00
engine-flutter-autoroll
32732e7885
520be3012 Roll Dart SDK from 1998f61b08f7 to f452a6585cbd (2 revisions) (flutter/engine#28906) ( #90877 )
2021-09-28 07:23:03 -07:00
engine-flutter-autoroll
effbc1457a
447069292 Fixed _CastError when running example App (flutter/plugins#4390) ( #90871 )
2021-09-28 03:28:05 -07:00
engine-flutter-autoroll
a099839128
9fa0bc833 Roll Skia from 0bfac0127c5e to f2fb26d162b9 (4 revisions) (flutter/engine#28904) ( #90869 )
2021-09-28 03:03:02 -07:00
engine-flutter-autoroll
2bb656f848
Roll Plugins from 8a71e0ee47c7 to f48f8dba59fb (2 revisions) ( #90866 )
2021-09-28 02:18:05 -07:00
engine-flutter-autoroll
955f44520e
Roll Engine from 94e5cb8b2b0d to 64b26a3f0c84 (2 revisions) ( #90864 )
2021-09-28 01:58:05 -07:00
engine-flutter-autoroll
76743520ba
8a71e0ee4 [camera] Fix IllegalStateException being thrown in Android implementation when switching activities. (flutter/plugins#4319) ( #90857 )
2021-09-28 01:13:05 -07:00
engine-flutter-autoroll
3d9780246e
94e5cb8b2 Roll Dart SDK from 06093fe5921e to 1998f61b08f7 (1 revision) (flutter/engine#28899) ( #90852 )
2021-09-27 23:23:04 -07:00
engine-flutter-autoroll
7c505894a1
933661d3e Roll Skia from ef96fa9e83c2 to 0bfac0127c5e (9 revisions) (flutter/engine#28897) ( #90850 )
2021-09-27 21:58:02 -07:00
engine-flutter-autoroll
7ee0eced8d
Roll Engine from adfea3cf1f6a to a84b2a72f330 (5 revisions) ( #90849 )
2021-09-27 20:53:03 -07:00
engine-flutter-autoroll
70de0c4f5f
f58ab5988 Load navigation controls immediately. (flutter/plugins#4378) ( #90846 )
2021-09-27 20:18:04 -07:00
engine-flutter-autoroll
aa08b2ac0f
adfea3cf1 fuchsia: Add child views to flatland engine (flutter/engine#28811) ( #90841 )
2021-09-27 19:48:03 -07:00
Jenn Magder
be8d29ffc6
Run native_ui_tests_macos in correct directory ( #90829 )
2021-09-27 17:38:03 -07:00
Hans Muller
3a6c18daec
Correct notch geometry when MediaQuery padding.top is non-zero ( #90703 )
2021-09-27 17:31:23 -07:00
engine-flutter-autoroll
d9f9fc453b
80b5d2ed3 [ci] Temporary run publish task on Flutter stable channel. (flutter/plugins#4388) ( #90836 )
2021-09-27 15:58:04 -07:00
Christopher Fujino
23f50789a7
[flutter_conductor] Update README ( #90557 )
2021-09-27 14:43:05 -07:00
engine-flutter-autoroll
42c5c6a8a3
Roll Engine from 8dc5cc2a4c38 to 6b5e89d11694 (8 revisions) ( #90827 )
2021-09-27 14:08:06 -07:00
engine-flutter-autoroll
da615b81ce
5ec61962d [in_app_purchase] Bump dependencies on json_serializable, build_runner (flutter/plugins#4386) ( #90823 )
2021-09-27 12:53:05 -07:00
engine-flutter-autoroll
abf8230163
8dc5cc2a4 Roll Fuchsia Mac SDK from OPoARlWlE... to NxbeZ1Uke... (flutter/engine#28880) ( #90816 )
2021-09-27 12:50:56 -07:00
Daco Harkes
67fdf937c3
[bots] verbose logs when analyzing samples ( #90447 )
2021-09-27 12:38:07 -07:00
Callum Moffat
8ed704d8e7
CupertinoContextMenu: Use root Overlay ( #89331 )
2021-09-27 12:28:07 -07:00
nt4f04uNd
c70df378ae
Change hitTest signatures to be non-nullable ( #87792 )
2021-09-27 10:38:05 -07:00
Aayan
0082ff973e
Material banner updates ( #90380 )
2021-09-27 13:14:52 -04:00
David Iglesias
92a55d0a9c
Add DDC regression test. ( #90692 )
2021-09-27 08:23:06 -07:00
Jason Simmons
cd19bc6007
Do not retry if pub get is run in offline mode ( #90394 )
2021-09-27 08:18:06 -07:00
engine-flutter-autoroll
48e6758fb5
65ad5a483 Roll Skia from 31fe2c51452a to 496b89cb74b3 (4 revisions) (flutter/engine#28879) ( #90778 )
2021-09-26 18:28:03 -07:00
engine-flutter-autoroll
35d9b3535d
3b61bf444 Roll Fuchsia Linux SDK from Jo9QY1R3C... to UUcoJDQho... (flutter/engine#28875) ( #90772 )
2021-09-26 14:58:04 -07:00
engine-flutter-autoroll
ddd7224aec
1564d21ce Roll Dart SDK from 9e2228a0e880 to 0cddaa9859a5 (1 revision) (flutter/engine#28874) ( #90770 )
2021-09-26 13:53:05 -07:00
engine-flutter-autoroll
415a378f7f
7e7b61576 Roll Fuchsia Mac SDK from AaBCvnaBN... to OPoARlWlE... (flutter/engine#28859) ( #90768 )
2021-09-26 11:08:05 -07:00
engine-flutter-autoroll
3f11447193
Roll Engine from fc00cc095797 to 9740229db871 (3 revisions) ( #90766 )
2021-09-26 10:03:03 -07:00
Ian Hickson
55185caeb8
Now that the bot is cleverer, we can make the PR template clearer ( #90414 )
2021-09-26 09:18:05 -07:00
engine-flutter-autoroll
b59e5c5d12
Roll Engine from 3248e8b64872 to fc00cc095797 (2 revisions) ( #90763 )
2021-09-26 08:58:04 -07:00
MH Johnson
f3049c7762
add navigation bar component ( #83047 )
2021-09-26 08:03:04 -07:00