1. 03 Aug, 2017 1 commit
  2. 25 Jul, 2017 1 commit
  3. 01 Jul, 2017 1 commit
    • Ian Hickson's avatar
      Automatic silver keep alive (#11067) · 7ba1879b
      Ian Hickson authored
      * AutomaticKeepAlive
      
      A Widget that listens for notifications from widgets that don't want to die.
      
      * Automatically wrap SliverList and SliverGrid children in AutomaticKeepAlive widgets
      
      * Fixes for review comments
      7ba1879b
  4. 28 Jun, 2017 1 commit
  5. 26 Jun, 2017 1 commit
  6. 23 Jun, 2017 2 commits
  7. 21 Jun, 2017 3 commits
  8. 27 May, 2017 1 commit
    • Ian Hickson's avatar
      Much work on the documentation (#10331) · f50caddf
      Ian Hickson authored
      Minor fixes throughout, e.g. removing trailing commas from the end of sample code expressions, changing headings to "sample code" more consistently, removing stale todos, fix typos in a private method name, minor grammar fixes, added some clarifications to CircularProgressIndicator, LinearProgressIndicator, CrossAxisAlignment, added some cross-references to various members, made it slightly clearer that layout algorithms are implementation details.
      
      Clarified "elevation" throughout.
      
      Added docs to InkResponse and InkWell.
      
      Added sample code for: SliverAppBar, Card, ListTile, EdgeInsets, Row, Column, CustomScrollView, ListView, SliverFixedExtentList, and SliverGrid.
      
      Fixes #10317.
      Fixes #10316.
      Fixes #10267. (sort of, see comment therein)
      Fixes #9331. (sort of, see comment therein)
      Fixes #9407. (sort of, see comment therein)
      f50caddf
  9. 16 May, 2017 1 commit
  10. 05 May, 2017 1 commit
  11. 28 Apr, 2017 1 commit
  12. 23 Apr, 2017 1 commit
  13. 21 Apr, 2017 2 commits
  14. 05 Apr, 2017 1 commit
  15. 04 Apr, 2017 1 commit
  16. 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
  17. 29 Mar, 2017 1 commit
  18. 04 Mar, 2017 1 commit
  19. 03 Mar, 2017 1 commit
  20. 23 Feb, 2017 1 commit
  21. 21 Feb, 2017 1 commit
  22. 17 Feb, 2017 1 commit
  23. 09 Feb, 2017 1 commit
  24. 06 Feb, 2017 2 commits
  25. 04 Feb, 2017 3 commits
    • Adam Barth's avatar
      Improve and document SliverGrid delegate structure (#7884) · 921c0fa5
      Adam Barth authored
      We now create a GridLayout object that memoizes the layout information
      for a given SliverConstraints. This approach is both more efficient
      (because the delegate no longer needs to re-solve its layout for each
      child) and allows for more code sharing between delegates.
      
      The SliverGridRegularTileLayout will also be useful for the date
      picker.
      
      Also, document the grid delegates.
      921c0fa5
    • Adam Barth's avatar
      Give more control to SliverChildDelegate (#7885) · 7f79cced
      Adam Barth authored
      This patch moves the resonsibility for wrapping repaint boundaries
      around children to SliverChildDelegate, which means delegates can choose
      whether or no to use repaint boundaries.
      
      Also introduce SliverChildBuilderDelegate to make it easier to use the
      builder pattern with sliver lists.
      
      This functionality will be used by date picker, which wants to use a
      SliverGrid but doesn't need a repaint boundary around every day in a
      month grid.
      7f79cced
    • Ian Hickson's avatar
      SliverBlock->SliverList (#7872) · 471e91d4
      Ian Hickson authored
      471e91d4
  26. 03 Feb, 2017 1 commit
    • Adam Barth's avatar
      Add PageView (#7809) · 32314657
      Adam Barth authored
      This widget is a start towards replacing PageableList. There are still a number
      of features that we'll need to add before this widget can replace PageableList.
      32314657
  27. 01 Feb, 2017 3 commits
  28. 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
  29. 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
  30. 27 Jan, 2017 2 commits
    • Adam Barth's avatar
      Split ScrollableViewport2 from Scrolllable2 (#7707) · 743be674
      Adam Barth authored
      This structure makes it easier to customize the viewport used in a Scrollable.
      Now Scrollable2 doesn't commit to using slivers.
      743be674
    • Adam Barth's avatar
      Add ScrollView.padding (#7690) · 5ecf8786
      Adam Barth authored
      Uses SliverPadding to implementing paddding in ScrollView. Also, deploy
      ScrollView in more places now that it implements padding.
      
      Finally, remove loader_app.dart because it is not referenced.
      5ecf8786