1. 08 Sep, 2021 1 commit
  2. 21 May, 2021 1 commit
  3. 14 May, 2021 1 commit
  4. 13 May, 2021 1 commit
  5. 04 May, 2021 2 commits
  6. 28 Apr, 2021 1 commit
  7. 26 Apr, 2021 1 commit
  8. 23 Apr, 2021 1 commit
  9. 21 Apr, 2021 1 commit
  10. 01 Mar, 2021 1 commit
  11. 27 Feb, 2021 1 commit
  12. 16 Feb, 2021 1 commit
  13. 12 Feb, 2021 1 commit
    • Nathan Walker's avatar
      ListTile Material Ripple and Shape Patch (#74373) · 422916d2
      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.
      422916d2
  14. 04 Feb, 2021 1 commit
  15. 20 Jan, 2021 2 commits
    • Greg Spencer's avatar
      Revert "ListTile Material Ripple and Shape Patch (#73618)" (#74335) · 2e3d3e65
      Greg Spencer authored
      This reverts commit 024c49da because it breaks Google internal tests.
      2e3d3e65
    • Nathan Walker's avatar
      ListTile Material Ripple and Shape Patch (#73618) · 024c49da
      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)
      024c49da
  16. 02 Nov, 2020 1 commit
  17. 29 Oct, 2020 1 commit
  18. 12 Oct, 2020 1 commit
  19. 07 Oct, 2020 1 commit
  20. 11 Jun, 2020 1 commit
  21. 07 Apr, 2020 1 commit
    • EricEnslen's avatar
      Allow ListTiles to be autofocused (#54229) · cccfe96e
      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.
      cccfe96e
  22. 02 Apr, 2020 1 commit
    • Greg Spencer's avatar
      Add toggleable attribute to Radio (#53846) · a8b3d1b7
      Greg Spencer authored
      This adds a new toggleable attribute to the Radio widget. This allows a radio group to be set back to an indeterminate state if the selected radio button is selected again.
      
      Fixes #53791
      a8b3d1b7