1. 04 May, 2018 1 commit
  2. 19 Apr, 2018 1 commit
  3. 20 Mar, 2018 1 commit
  4. 12 Mar, 2018 1 commit
  5. 05 Feb, 2018 1 commit
  6. 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
  7. 31 Oct, 2017 1 commit
  8. 25 Oct, 2017 1 commit
  9. 02 Oct, 2017 1 commit
    • Adam Barth's avatar
      Add Alignment, which will replace FractionalOffset (#12342) · 2b126bcd
      Adam Barth authored
      Unlike FractionalOffset, Alignment uses the center as the zero of the
      coordinate system, which makes the RTL math work out much cleaner.
      
      Also, make FractionalOffset into a subclass of Alignment so that clients
      can continue to use FractionalOffset.
      2b126bcd
  10. 21 Sep, 2017 1 commit
  11. 03 Aug, 2017 1 commit
  12. 25 Jul, 2017 1 commit
  13. 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
  14. 28 Jun, 2017 1 commit
  15. 26 Jun, 2017 1 commit
  16. 23 Jun, 2017 2 commits
  17. 21 Jun, 2017 3 commits
  18. 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
  19. 16 May, 2017 1 commit
  20. 05 May, 2017 1 commit
  21. 28 Apr, 2017 1 commit
  22. 23 Apr, 2017 1 commit
  23. 21 Apr, 2017 2 commits
  24. 05 Apr, 2017 1 commit
  25. 04 Apr, 2017 1 commit
  26. 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
  27. 29 Mar, 2017 1 commit
  28. 04 Mar, 2017 1 commit
  29. 03 Mar, 2017 1 commit
  30. 23 Feb, 2017 1 commit
  31. 21 Feb, 2017 1 commit
  32. 17 Feb, 2017 1 commit
  33. 09 Feb, 2017 1 commit
  34. 06 Feb, 2017 2 commits
  35. 04 Feb, 2017 1 commit
    • 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