Konstantin Scheglov
741e9675e7
Remote returns for function expression inferred return type void. ( #61582 )
2020-07-17 09:36:03 -07:00
Todd Volkert
1840b7121a
Make scrollbar thickness and radius customizable ( #61401 )
...
* Make scrollbar thickness and radius customizable
https://github.com/flutter/flutter/issues/29576
https://github.com/flutter/flutter/issues/36412
* Add docs for constants
* No more magic numbers in test
2020-07-16 23:15:23 -07:00
Todd Volkert
5587ca17e8
Add assert in PictureLayer.addToScene() ( #61655 )
...
SceneBuilder.addPicture() is implemented in C++, and if `picture`
is null, it will seg-fault. This catches the problem before that
happens.
2020-07-16 23:14:56 -07:00
Todd Volkert
7ea710c56e
Fix Border.symmetric: phase 2 ( #61666 )
...
This updates the default value of the `invertMeaningOfVerticalAndHorizontal`
argument from true to false.
https://github.com/flutter/flutter/issues/61470
2020-07-16 23:14:44 -07:00
Christopher Fujino
df542b6831
update packages and update template ( #61678 )
2020-07-16 18:32:46 -07:00
Ming Lyu (CareF)
8badf93609
Revert "update packages ( #61647 )" ( #61674 )
...
This reverts commit b7b60a2d2c0a34e913f6eca3c0c9c8d21f689ab7.
2020-07-16 20:13:18 -04:00
Michael Goderbauer
1b406159f2
Give better error message for describeEnum ( #61581 )
2020-07-16 16:21:05 -07:00
Ming Lyu (CareF)
b7b60a2d2c
update packages ( #61647 )
2020-07-16 18:55:42 -04:00
Ben Konyi
38fe887342
Revert "Reland "Add support for Dart Development Service (DDS) in Flutter Tools ( #61276 )" ( #61633 )" ( #61641 )
...
This reverts commit 594c3541aae145123f964a60f3c30beda4a889c3.
2020-07-16 11:43:54 -07:00
Sam Rawlins
45e097da16
Remove unused parameter from private method in widget_inspector ( #61572 )
2020-07-16 11:41:03 -07:00
Ben Konyi
594c3541aa
Reland "Add support for Dart Development Service (DDS) in Flutter Tools ( #61276 )" ( #61633 )
...
This reverts commit a1a5a8f6357788a3f5e1c4e60a4ae9abf9e6aed2.
2020-07-16 11:38:17 -07:00
Bogdan Lukin
9ef8192760
Fix/decoration equality ( #61551 )
2020-07-16 11:26:04 -07:00
Darren Austin
c78578417d
Updated date pickers to use the new TextButton in place of FlatButton. ( #61489 )
2020-07-16 11:21:04 -07:00
Todd Volkert
e2cdc9f981
Allow transparent barrierColor in showDialog methods ( #61516 )
...
`showDialog()` and `showGeneralDialog()` were allowing transparent
colors but then triggering an assertion down the stack while building
the modal barrier. The assertion existed to keep from animating from
transparent to transparent, but there's no need for the assertion,
since we can just treat the transparent case as the same as the null
case -- no animation necessary.
2020-07-16 09:43:47 -07:00
Darren Austin
681395e888
Updated time pickers to use the new TextButton in place of FlatButton. ( #61492 )
2020-07-16 09:43:16 -07:00
Kate Lovett
16d5dd9b13
Fix NestedScrollView inner ballistic activity for 0 velocity ( #61386 )
2020-07-16 09:41:04 -07:00
Hans Muller
563afe381c
Updated obsolte button references in Scaffold, IconButton ( #61578 )
2020-07-16 09:40:26 -07:00
Hans Muller
d90a246461
Corrected splash color for TextButton, ElevatedButton, OutlinedButton ( #61576 )
2020-07-16 09:40:11 -07:00
chunhtai
fc09119d0a
fix intrinsic height and width for widget span ( #61485 )
2020-07-16 09:36:09 -07:00
Kate Lovett
d877ad8616
Update Table docs for horizontal scrolling ( #61268 )
2020-07-16 09:36:05 -07:00
Pedro Massango
5a69de8263
FormField should autovalidate only if its content was changed (fixed) ( #59766 )
2020-07-16 09:31:05 -07:00
Todd Volkert
9e665e1d88
Update documentation for IntrinsicWidth & IntrinsicHeight ( #61502 )
...
https://github.com/flutter/flutter/issues/61496
2020-07-15 11:54:32 -07:00
Todd Volkert
0d2421d5df
Add defaults to showGeneralDialog() ( #61503 )
...
The function passes most of its arguments through to
`_DialogRoute`, but it wasn't providing the default
values that `_DialogRoute` was, causing it to override
the defaults will null values.
2020-07-15 11:53:55 -07:00
Jonah Williams
5e1635b186
fix type error in web builds ( #61556 )
2020-07-15 10:21:39 -07:00
Tong Mu
6e0bc30e84
Document the mapping of system mouse cursors on Windows and Linux ( #61399 )
...
Add document for mouse cursor mapping on Windows and Linux.
2020-07-15 10:02:22 -07:00
Alexandre Ardhuin
978a2e7bf6
migrate foundation to nullsafety ( #61188 )
...
* migrate foundation to nullsafety
* address review comments
2020-07-15 18:55:27 +02:00
Neevash Ramdial
e24cdab517
Re-land Expose height and width factor in AnimatedAlign ( #61136 )
2020-07-15 09:46:03 -07:00
Anthony
6f56ba453d
Automatically scale down Dialog padding for larger text scale factors ( #58245 )
2020-07-15 09:36:03 -07:00
Ayush Bherwani
26a5f5c3d6
[ListTileTheme] adds properties to customize tile color at theme level ( #61532 )
2020-07-15 05:46:03 -07:00
Hans Muller
fcb5806933
Update MaterialState API docs ( #61479 )
2020-07-14 22:41:01 -07:00
Todd Volkert
3ce06efd40
Default textBaseline to alphabetic in Flex ( #61425 )
2020-07-14 22:36:02 -07:00
chunhtai
e78cbe5df9
fix code comments in the route route didadd method ( #61400 )
2020-07-14 16:06:01 -07:00
Todd Volkert
4195ad4ef6
Fix Border.symmetric: phase 1 ( #61474 )
2020-07-14 13:21:02 -07:00
Jonah Williams
485034cab3
[flutter_tools] update fastReassemble method for single widget reloads ( #61413 )
...
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
2020-07-14 12:25:13 -07:00
Todd Volkert
74f3e6dd63
Add assert to Table to check for rows with null children ( #61457 )
2020-07-14 12:20:22 -07:00
Andre
06a35b3322
Improve error reporting for RenderObject visitChildren errors ( #61455 )
...
* Improve error reporting for RenderObject visitChildren errors
* Nits and fixes
2020-07-14 14:21:14 -04:00
Todd Volkert
b58c3f0852
Update documentation ( #61424 )
2020-07-14 10:25:24 -07:00
Jason C.H
c047769487
Implement new activity indicator for iOS14 ( #60179 )
...
Updates the activity indicator style to iOS14, but places it behind a flag, to be deprecated when iOS 14 is released.
2020-07-14 09:21:27 -07:00
Ayush Bherwani
9cb7ac1353
[ListTile] adds new properties to customize the tile color ( #61347 )
2020-07-14 03:41:03 -07:00
Fabusuyi Ayodeji
1c96479760
expose route settings for showModalBottomSheet ( #60640 )
2020-07-14 01:36:02 -07:00
Hans Muller
bb3280885c
Update the Scaffold examples; use the new button classes ( #61394 )
2020-07-13 16:28:27 -07:00
chunhtai
88a78d660e
reland "Adds semantics information for the popup menu item ( #61258 )" ( #61385 )
2020-07-13 16:16:02 -07:00
chunhtai
f7688c5001
issue 61346 route can be added and disposed in the same frame ( #61375 )
2020-07-13 16:11:03 -07:00
Hans Muller
82666ef19e
Update Card example and shadowColor default ( #61392 )
2020-07-13 16:01:09 -07:00
Dan Field
eadc35f62b
Optionally invert oversized images ( #61209 )
...
* Optionally invert oversized images
2020-07-13 14:03:23 -07:00
Justin McCandless
8048c0332d
Document the addition of LRM and RLM characters ( #61104 )
2020-07-13 14:01:02 -07:00
Todd Volkert
b635d97674
Add widget of the week videos to documentation ( #61368 )
2020-07-13 13:51:03 -07:00
Darren Austin
e2acc6503a
Remove the default shortcut mapping for GameButtonB. ( #61370 )
2020-07-13 13:46:02 -07:00
Hans Muller
0f57cd26f8
Make ThemeData.shadowColor the default shadowColor in TextButton et al. ( #61371 )
2020-07-13 13:34:54 -07:00
Tong Mu
da8695d389
Mouse events report correct local positions ( #61190 )
2020-07-13 13:26:03 -07:00