1. 11 Oct, 2022 1 commit
  2. 10 Oct, 2022 1 commit
  3. 25 May, 2022 1 commit
  4. 24 May, 2022 1 commit
  5. 16 May, 2022 1 commit
  6. 01 Jul, 2021 1 commit
  7. 27 Feb, 2021 1 commit
  8. 16 Feb, 2021 1 commit
  9. 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
  10. 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
  11. 06 Jan, 2021 1 commit
  12. 10 Oct, 2020 1 commit
  13. 27 Sep, 2020 1 commit
  14. 27 Aug, 2020 1 commit
  15. 29 Jul, 2020 1 commit
  16. 28 Jul, 2020 1 commit
  17. 24 Jun, 2020 1 commit
  18. 11 Jun, 2020 1 commit
  19. 25 Mar, 2020 1 commit
  20. 20 Mar, 2020 1 commit
  21. 19 Mar, 2020 1 commit
  22. 07 Jan, 2020 1 commit
  23. 04 Dec, 2019 1 commit
  24. 27 Nov, 2019 1 commit
    • Ian Hickson's avatar
      License update (#45373) · 449f4a66
      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
      449f4a66
  25. 09 May, 2019 1 commit
  26. 03 May, 2019 1 commit
  27. 23 Apr, 2019 1 commit
  28. 22 Apr, 2019 1 commit
  29. 01 Mar, 2019 1 commit
    • Alexandre Ardhuin's avatar
      Add missing trailing commas (#28673) · 387f8854
      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
      387f8854
  30. 21 Feb, 2019 1 commit
  31. 11 Dec, 2018 1 commit
  32. 10 Dec, 2018 1 commit
  33. 17 Nov, 2018 1 commit
  34. 12 Sep, 2018 1 commit
  35. 11 Sep, 2018 1 commit
    • Dan Field's avatar
      Fix keepalive for large jumps on tabs and lists. (#21350) · 98ad574d
      Dan Field authored
      * Ensure that the _childElements map is properly traversed as a sparse list and not inflated with garbage collected children.
      
      * Add tests to ensure Lists/Tabs with KeepAlive children can make large jumps, don't lose children (including after rebuild).
      98ad574d
  36. 25 Jun, 2018 1 commit
  37. 21 Jun, 2018 1 commit
  38. 16 Jun, 2018 1 commit
  39. 15 Jun, 2018 1 commit
    • liyuqian's avatar
      Skip painting hidden children of a sliver list (#18465) · 38065376
      liyuqian authored
      We have many hidden children because of iOS accessibility (see also #18410).
      
      For example, in the tile screen of complex_layout app, there could be up to 20 children being painted without this PR. With this PR, only 12 get painted.
      
      This should improve the performance of FL-53 by 40%.
      38065376