Commit Graph

17361 Commits

Author SHA1 Message Date
Jenn Magder
0cb6d5983c Migrate fuchsia sdk and dependencies to null safety (#88920) 2021-08-25 19:51:04 -07:00
Anna Gringauze
a511c436c9 Fix web_tool_tests failure on dart roll (#88914)
Helps: https://github.com/flutter/flutter/issues/88911
2021-08-25 18:22:21 -07:00
Mohammad Ghalayini
bb278d1da2 [new feature] Add support for a RawScrollbar.shape (#85652) 2021-08-25 17:21:02 -07:00
Jenn Magder
d550d497f1 Migrate some flutter_tools tests to null safety (#88850) 2021-08-25 16:21:04 -07:00
nt4f04uNd
59f3f23a72 Fix precision error in NestedScrollView (#87801) 2021-08-25 15:46:03 -07:00
Zachary Anderson
cff3db1d8e Account for additional warning text from the tool (#88902) 2021-08-25 14:55:42 -07:00
Jenn Magder
125451bc2e Migrate mac.dart to null safety (#88846) 2021-08-25 13:31:03 -07:00
Darren Austin
a1cd3f45e0 Updated some skip test comments that were missed in the audit. (#88893) 2021-08-25 11:49:04 -07:00
Dan Field
c5861cfb56 Revert "Fix DPR in test view configuration (#88609)" (#88889)
This reverts commit 5feee0d8fa.
2021-08-25 10:09:03 -07:00
Greg Spencer
33403bd28e Extract Sample code into examples/api (#87280)
This extracts the sample code out from the API doc comments, and places them in separate files on disk, allowing running of the examples locally, testing them, and building of slightly larger examples.
2021-08-25 09:45:12 -07:00
chunhtai
527d868391 Revert "Fixes listview shrinkwrap and hidden semantics node gets updated incorrectly. (#88814)" (#88886)
This reverts commit 0e9665e4ef.
2021-08-25 09:42:43 -07:00
xubaolin
72289ec8cf Fix the showBottomSheet controller leaking (#87775)
* Fix the showBottomSheet controller leaking

* codereview feedback
2021-08-25 11:35:46 +08:00
chunhtai
0e9665e4ef Fixes listview shrinkwrap and hidden semantics node gets updated incorrectly. (#88814) 2021-08-24 18:09:04 -07:00
creativecreatorormaybenot
38186c8971 Add WidgetsFlutterBinding Assertion to setMethodCallHandler (#88819) 2021-08-24 17:04:03 -07:00
Dan Field
5feee0d8fa Fix DPR in test view configuration (#88609) 2021-08-24 14:26:54 -07:00
Zachary Anderson
b4e0472b04 Revert "Use dart pub instead of pub to invoke pub from tools (#88509)" (#88792)
This reverts commit 7c24ff2c5b.
2021-08-24 09:00:22 -07:00
Sigurd Meldgaard
7c24ff2c5b Use dart pub instead of pub to invoke pub from tools (#88509)
Top level `pub` is being deprecated.
2021-08-24 15:51:08 +02:00
Deepak Penaganti
6dc18ef74e Blurstyle for boxshadow v2 (#88697) 2021-08-23 22:39:04 -07:00
chunhtai
b9908f6b86 Fixes renderparagraph crashes due to truncated semantics node (#88190)
* Fixes renderparagraph crashes due to truncated semantics node

* add period
2021-08-23 16:03:49 -07:00
chunhtai
93a1484ae0 Add a hook for scroll position to notify scrolling context when dimen… (#87076) 2021-08-23 15:39:18 -07:00
Alexander Dahlberg
02bb8a4355 Fixed leak and removed no-shuffle tag in platform_channel_test.dart (#88432)
Co-authored-by: Alexander Dahlberg <alexander.dahlberg@sigma.se>

This PR fixed the problem that prevented platform_channel_test.dart being shuffled. Part of #85160.

A couple of tests sets up callbacks through setMethodCallHandler() that gets unresolved and breaks other tests.

This PR clears those callbacks by passing null to setMethodCallHandler.
2021-08-23 15:32:44 -07:00
Alexander Dahlberg
86d7ec4548 Fixed leak and removed no-shuffle tag in ticker_test.dart (#88426) 2021-08-23 15:22:06 -07:00
Alexander Dahlberg
04de2ed3d5 Fixed leak and removed no-shuffle tag on scaffold_test.dart (#88375) 2021-08-23 15:17:05 -07:00
creativecreatorormaybenot
87b17c8ccf Add RichText support to find.text() (#87197) 2021-08-23 14:47:29 -07:00
Christopher Fujino
efaa9a4637 update-packages --force-upgrade (#88728) 2021-08-23 12:57:08 -07:00
Jonah Williams
fa0782b696 reassign jonahwilliams todos (#88707) 2021-08-23 12:27:07 -07:00
Iman khoshabi
adb25e1801 Correct PointerExitEvent class documentation (#88650) 2021-08-23 12:22:07 -07:00
Abhishek Ghaskata
49bf933b59 add margin to vertical stepper (#86067)
* add marging to vertical stepper

* Remove tralling spaces

* Update docstring
2021-08-23 12:02:02 -07:00
Alexander Dahlberg
1a5692b722 Fixed leak and removed no-shuffle tag in widgets/app_overrides_test.dart (#88469)
This PR fixed the problem that has prevented app_overrides_test.dart being shuffled. Part of #85160.

This test is testing WidgetsApp.showPerformanceOverlayOverride and WidgetsApp.debugAllowBannerOverride.

The problem: There was a strong dependecy to the default ordering of the tests. The value of showPerformanceOverlayOverride or debugAllowBannerOverride was expected to be the value that was set in previous test.

The fix: Make the values be set to default values after each test:
WidgetsApp.showPerformanceOverlayOverride=false
WidgetsApp.debugAllowBannerOverride=true
Set the expected value at the start of the test, if the default value is not expected.
2021-08-23 10:03:49 -07:00
Alexander Dahlberg
83b9e99cfb Fixed leak and removed no-shuffle tag in scheduler_test.dart (#88423)
Co-authored-by: Alexander Dahlberg <alexander.dahlberg@sigma.se>

This PR fixed the problem that has prevented scheduler_test.dart being shuffled. Part of #85160.

One test schedules a task, but events are locked so the scheduled task does not execute and this messes up other tests.
This PR adds a teardown that executes the scheduled task after the test, when events are unlocked.
2021-08-23 10:03:21 -07:00
Alexander Dahlberg
2ee0234471 Fixed leak and removed no-shuffle tag in image_stream_test.dart (#88376)
Fixes test/painting/image_stream_test.dart of #85160

The problem: The timeDilation was changed to 2.0 but not restored. The changed timeDilation carried on to following tests which messed up some of them when using test ordering seed 456.

The Fix: Restore timeDilation to 1.0 at the end of test.
2021-08-23 10:03:03 -07:00
Alexander Dahlberg
60ed5cc8e4 Fixed leak and removed no-shuffle tag in long_press_test.dart (#88373)
Fixes test/gestures/long_press_test.dart of #85160

The LongPressGestureRecognizer in test 'non-allowed pointer does not inadvertently reset the recognizer' was not disposed breaking a lot of other tests.
2021-08-23 10:02:21 -07:00
nt4f04uNd
b5932065fa Ensure RawImage render object updates (#88369) 2021-08-20 15:03:37 -07:00
nt4f04uNd
123ec80cfd init (#88427) 2021-08-20 14:57:03 -07:00
Jonah Williams
01d0c53571 partial revert of gesture config (#88534)
Co-authored-by: Zachary Anderson <zanderso@users.noreply.github.com>
2021-08-20 13:43:16 -07:00
Ian Hickson
9f9aa46b7d Update the timeouts since tests time out after 15 minutes not 30 seconds. (#88061) 2021-08-20 12:52:03 -07:00
Dan Field
d5d8265079 Revert "Write timelines to separate files (#88473)" (#88594)
This reverts commit fa83fefa42.
2021-08-20 11:57:32 -07:00
Emmanuel Garcia
a7f8687d23 Reland: Bump to Gradle 7 and use Open JDK 11 (#88540) 2021-08-20 09:57:02 -07:00
Dan Field
fa83fefa42 Write timelines to separate files (#88473) 2021-08-20 09:47:04 -07:00
nt4f04uNd
17f0d2e5de init (#88391) 2021-08-20 09:42:05 -07:00
Dan Field
c02961256a Reland remove DefaultShaderWarmup (#88455) 2021-08-18 21:37:03 -07:00
sigmundch
7a21bd1000 reland disable ideographic script test on web (#88383) 2021-08-18 21:32:04 -07:00
Hans Muller
afe58fbab5 Revert "Reland "Android Q transition by default (#82670)" (#88409)" (#88482) 2021-08-18 20:22:04 -07:00
Bernardo Ferrari
6318b5096c Add favicon to web template (#88141) 2021-08-18 17:12:02 -07:00
Anna Gringauze
2685e866f3 Update dwds and other packages (#88450)
- Update all packages (bringing in dwds 11.2.1)

Closes: https://github.com/flutter/flutter/issues/84012
2021-08-18 14:15:57 -07:00
chunhtai
89d1b9e4c5 Makes PlatformInformationProvider aware of the browser default route … (#88122) 2021-08-18 13:37:02 -07:00
Jenn Magder
563c8f43e3 Verbosify every command in ios_content_validation_test (#88404) 2021-08-18 10:42:02 -07:00
ColdPaleLight
33f5ac6650 ImageInfo adds a new getter named sizeBytes to decouple ImageCache and ui.Image (#86555) 2021-08-18 09:21:12 -07:00
Alex Li
df399f9a8d Reland "Android Q transition by default (#82670)" (#88409)
* Reland "Android Q transition by default (#82670)"

This reverts commit 4053b4b16c.

* Fix `overall_experience_test.dart` for flutter_tools
2021-08-18 09:11:27 -07:00
Taha Tesser
d72287522b [tools] Fix Android Studio duplicate detection (#88384) 2021-08-18 02:02:03 -07:00