- 08 Mar, 2021 1 commit
-
-
Hans Muller authored
-
- 06 Mar, 2021 1 commit
-
-
Michael Goderbauer authored
-
- 04 Mar, 2021 1 commit
-
-
Greg Spencer authored
-
- 27 Feb, 2021 1 commit
-
-
Greg Spencer authored
This reverts commit f8cd24de in an attempt to re-land it. There are no changes in this PR from #74373, since it only failed Google internal tests, and we think that the solution involves updating those tests instead of changing this code.
-
- 16 Feb, 2021 1 commit
-
-
Greg Spencer authored
This reverts commit 422916d2 because it causes unexpected changes in the rendering of the background of a ListTile.
-
- 12 Feb, 2021 1 commit
-
-
Nathan Walker authored
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.
-
- 09 Feb, 2021 1 commit
-
-
Miguel Beltran authored
Fix for issue #75518 - ListTile.divideTiles throws error if empty list is passed when null-safety enabled (#75522)
-
- 04 Feb, 2021 1 commit
-
-
Sam Rawlins authored
-
- 27 Jan, 2021 1 commit
-
-
Alexandre Ardhuin authored
-
- 20 Jan, 2021 2 commits
-
-
Greg Spencer authored
This reverts commit 024c49da because it breaks Google internal tests.
-
Nathan Walker authored
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. List which issues are fixed by this PR. You must list at least one issue. Fixes #73616 Fixes #63877 Fixes #67117 If you had to change anything in the flutter/tests repo, include a link to the migration guide as per the breaking change policy. I modified a handful of tests related to ListTiles. The tests I changed had implementation-specific ways of checking the ListTile color. I have rewritten those so that instead of checking for a ColoredBox with a specific color, they check that a path is painted with the correct color. I added the following tests to list_tile_test.dart: "ListTile shows Material ripple effects on top of tileColor" (Regression test for #73616) "ListTile shape is painted correctly" (Regression test for #63877) I added the following test to sliver_prototype_item_extent_test.dart: "SliverPrototypeExtentList prototypeItem paint transform is zero" (Regression test for #67117)
-
- 14 Jan, 2021 1 commit
-
-
Shi-Hao Hong authored
-
- 10 Nov, 2020 1 commit
-
-
Darren Austin authored
-
- 07 Nov, 2020 1 commit
-
-
Hans Muller authored
-
- 06 Nov, 2020 1 commit
-
-
Playhi authored
Allow modification of ListTile's horizontalTitleGap, minVerticalPadding, minLeadingWidth
-
- 05 Nov, 2020 1 commit
-
-
Chinmoy authored
-
- 02 Nov, 2020 1 commit
-
-
Michael Goderbauer authored
-
- 29 Oct, 2020 1 commit
-
-
Greg Spencer authored
This removes the nullOk parameter from Focus.of, FocusTraversalOrder.of and FocusTraversalGroup.of, and creates maybeOf equivalents for each. The of methods now return non-nullable values, and the maybeOf equivalents return nullable values.
-
- 12 Oct, 2020 2 commits
-
-
Shi-Hao Hong authored
Migrates the following files to NNBD: * input_decorator_test.dart * list_tile_test.dart * localizations_test.dart * material_button_test.dart * material_state_property_test.dart * material_test.dart * mergeable_material_test.dart
-
xubaolin authored
* Fix ListTile assert when layout at zero size #66636
-
- 15 Jul, 2020 1 commit
-
-
Ayush Bherwani authored
-
- 14 Jul, 2020 1 commit
-
-
Ayush Bherwani authored
-
- 05 Jul, 2020 1 commit
-
-
Nils Reichardt authored
-
- 11 Jun, 2020 2 commits
-
-
Alexandre Ardhuin authored
* add language version 2.8 in packages/flutter * enable non-nullable analyzer flag
-
Darren Austin authored
-
- 04 Jun, 2020 1 commit
-
-
jBrennen authored
-
- 28 May, 2020 1 commit
-
-
Tong Mu authored
* Adds default cursor and/or mouseCursor property to a number of widgets. * Adds `MaterialStateMouseCurrsor`.
-
- 22 Apr, 2020 1 commit
-
-
Kate Lovett authored
-
- 10 Apr, 2020 1 commit
-
-
Greg Spencer authored
-
- 07 Apr, 2020 1 commit
-
-
EricEnslen authored
Adds an "autofocus" param to ListTile and its Checkbox, Radio and Switch variants, and passes the given value through to the wrapped InkWell, Switch, etc. This is important for scenarios like a settings screen, where the first interactable element on a page may be a SwitchListTile, for example.
-
- 27 Nov, 2019 1 commit
-
-
Ian Hickson authored
* Update project.pbxproj files to say Flutter rather than Chromium Also, the templates now have an empty organization so that we don't cause people to give their apps a Flutter copyright. * Update the copyright notice checker to require a standard notice on all files * Update copyrights on Dart files. (This was a mechanical commit.) * Fix weird license headers on Dart files that deviate from our conventions; relicense Shrine. Some were already marked "The Flutter Authors", not clear why. Their dates have been normalized. Some were missing the blank line after the license. Some were randomly different in trivial ways for no apparent reason (e.g. missing the trailing period). * Clean up the copyrights in non-Dart files. (Manual edits.) Also, make sure templates don't have copyrights. * Fix some more ORGANIZATIONNAMEs
-
- 31 Oct, 2019 1 commit
-
-
Greg Spencer authored
Makes sure that disabled InkWell/InkResponse and widgets that use them don't allow themselves to be focused. ListTile, PopupMenu, and Stepper were not setting canRequestFocus properly on the InkWell, and InkWell was allowing focus even if it was disabled (it was basically just relying on the containing widget to set canRequestFocus properly). Now InkWell must both be enabled (have an onTap or similar) and have canRequestFocus set to true.
-
- 10 Oct, 2019 1 commit
-
-
Greg Spencer authored
This attempts to reland #40186 and #41220, that were reverted in #41945. The main modifications from the original PRs are that I predefine the shortcuts and actions maps instead of defining them inline in the build function, and I use a new mapEquals to do a deep comparison so that we don't rebuild modified things if the contents of the map haven't changed. I also eliminated an operator== and hashCode that were defined on the Actions widget, since widgets shouldn't have those. (it's too bad though: I get an 85% speedup if we leave this in! Too bad it prevents rebuilding of the children...) Fixes #40101
-
- 30 Sep, 2019 1 commit
-
-
Alexandre Ardhuin authored
* add missing trailing commas * add more missing trailing commas * add more and more missing trailing commas
-
- 13 Jun, 2019 1 commit
-
-
Jonah Williams authored
-
- 29 Apr, 2019 1 commit
-
-
Dan Field authored
* Re-enable const
-
- 29 Mar, 2019 1 commit
-
-
Shi-Hao Hong authored
-
- 01 Mar, 2019 1 commit
-
-
Alexandre Ardhuin authored
* add trailing commas on list/map/parameters * add trailing commas on Invocation with nb of arg>1 * add commas for widget containing widgets * add trailing commas if instantiation contains trailing comma * revert bad change
-
- 19 Jan, 2019 1 commit
-
-
Mehmet Fidanboylu authored
-
- 14 Jan, 2019 1 commit
-
-
Ian Hickson authored
-