1. 25 Jun, 2018 1 commit
  2. 21 Jun, 2018 1 commit
  3. 16 Jun, 2018 1 commit
  4. 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
  5. 05 Jun, 2018 1 commit
  6. 04 May, 2018 1 commit
  7. 20 Mar, 2018 1 commit
  8. 05 Feb, 2018 1 commit
  9. 17 Nov, 2017 1 commit
    • Greg Spencer's avatar
      Fix spelling errors in all the dartdocs. (#13061) · 0259be90
      Greg Spencer authored
      I got tired of drive-by spelling fixes, so I figured I'd just take care of them all at once.
      
      This only corrects errors in the dartdocs, not regular comments, and I skipped any sample code in the dartdocs. It doesn't touch any identifiers in the dartdocs either. No code changes, just comments.
      0259be90
  10. 25 Oct, 2017 1 commit
  11. 22 Oct, 2017 1 commit
  12. 04 Oct, 2017 1 commit
  13. 21 Sep, 2017 1 commit
  14. 29 Aug, 2017 1 commit
  15. 03 Aug, 2017 1 commit
  16. 25 Jul, 2017 1 commit
  17. 28 Jun, 2017 1 commit
  18. 05 Jun, 2017 1 commit
  19. 05 May, 2017 1 commit
  20. 30 Mar, 2017 1 commit
    • Adam Barth's avatar
      SliverChildDelegate should know which children are live (#9073) · 0e43e581
      Adam Barth authored
      This patch adds a notification to SliverChildDelegate that says which
      children are alive after each layout. The delegate can use this
      information to optimize it's underlying model of the children (e.g., by
      discarding models for children that are far outside the live range).
      
      Fixes #9045
      0e43e581
  21. 29 Mar, 2017 1 commit
  22. 13 Mar, 2017 2 commits
  23. 23 Feb, 2017 1 commit
  24. 09 Feb, 2017 1 commit
  25. 04 Feb, 2017 2 commits
  26. 01 Feb, 2017 2 commits
  27. 31 Jan, 2017 1 commit
    • Adam Barth's avatar
      Add SliverGrid and ScrollGrid (#7745) · 9119969a
      Adam Barth authored
      This patch adds grid supports to slivers and introduces a ScrollGrid
      convenience class for making the common types of scrollable grids.
      
      This patch also deploys ScrollGrid in an example in the Flutter Gallery.
      9119969a
  28. 30 Jan, 2017 1 commit
    • Adam Barth's avatar
      Add SliverList (#7727) · 098af183
      Adam Barth authored
      Add SliverList
      
      A SliverList is a linear layout of box children in a viewport that all
      have a common, fixed extent along the scroll axis. The layout is similar
      to a SliverBlock but more efficient.
      098af183