1. 08 Dec, 2017 1 commit
    • xster's avatar
      Let translucent Cupertino bars have its scaffold children automatically pad... · ecf50418
      xster authored
      Let translucent Cupertino bars have its scaffold children automatically pad their heights - second try (#13440)
      
      * Let translucent Cupertino bars have its scaffold children automatically pad their heights (#13194)
      
      * Let lists automatically add sliver padding from media query. Translucent nav and tab bars leave behind media query paddings in scaffolds.
      
      * tests
      
      * const lint
      
      * Rename base abstract class to generalized ObstructingPreferredSizeWidget
      
      * review
      
      * More docs and comments from #13317
      ecf50418
  2. 02 Dec, 2017 1 commit
  3. 30 Nov, 2017 1 commit
  4. 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
  5. 31 Oct, 2017 1 commit
  6. 05 Oct, 2017 1 commit
  7. 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
  8. 24 Sep, 2017 1 commit
  9. 07 Sep, 2017 1 commit
  10. 05 Sep, 2017 1 commit
  11. 31 Aug, 2017 1 commit
  12. 03 Aug, 2017 1 commit
  13. 28 Jul, 2017 1 commit
  14. 25 Jul, 2017 1 commit
  15. 21 Jul, 2017 1 commit
    • Ian Hickson's avatar
      Add documentation and clean up code. (#11330) · 8f56f6fd
      Ian Hickson authored
      Mainly, this adds documentation to members that were previously
      lacking documentation.
      
      It also adds a big block of documentation about improving performance
      of widgets.
      
      This also removes some references to package:collection and adds
      global setEquals and listEquals methods in foundation that we can use.
      (setEquals in particular should be much faster than the
      package:collection equivalent, though both should be faster as they
      avoid allocating new objects.) All remaining references now qualify
      the import so we know what our remaining dependencies are.
      
      Also lots of code reordering in Flutter driver to make the code
      consistent and apply the style guide more thoroughly.
      8f56f6fd
  16. 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
  17. 28 Jun, 2017 1 commit
  18. 26 Jun, 2017 1 commit
  19. 23 Jun, 2017 2 commits
  20. 02 Jun, 2017 1 commit
  21. 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
  22. 05 May, 2017 1 commit
  23. 02 May, 2017 1 commit
  24. 25 Apr, 2017 1 commit
  25. 21 Apr, 2017 1 commit
  26. 05 Apr, 2017 1 commit
  27. 04 Apr, 2017 1 commit
  28. 29 Mar, 2017 1 commit
  29. 17 Mar, 2017 2 commits
  30. 14 Mar, 2017 1 commit
  31. 02 Mar, 2017 2 commits
    • Chris Bracken's avatar
      Avoid potential ConcurrentModificationError (#8534) · 8916b101
      Chris Bracken authored
      Also make locals final where possible.
      
      Followup to 52715467.
      8916b101
    • Chris Bracken's avatar
      Better defaulting for scroll view primary-ness (#8506) · 52715467
      Chris Bracken authored
      * Improved defaults for scroll view primary-ness
      
      * Vertical scroll views default to primary:true.
      * Horizontal scroll views default to primary:false.
      * If a scroll view is primary and it got a non-null inherited primary
        scroll controller, it introduces a primary scroll controller inherited
        with a value of null for its descendants.
      
      ScrollController now multiplexes writes to all registered positions;
      reads of position continue to assert that only one position is
      registered. Reads still require a single position.
      52715467
  32. 28 Feb, 2017 1 commit
  33. 17 Feb, 2017 1 commit
    • Adam Barth's avatar
      Two becomes one (#8253) · e0b12ca1
      Adam Barth authored
      Rename all the "2" classes related to scrolling to remove the "2". Now that the
      old scrolling code is gone, we don't need to use the suffix.
      e0b12ca1
  34. 09 Feb, 2017 1 commit
    • Ian Hickson's avatar
      Port AppBar to Scrollable2 (#7996) · 83a4cf26
      Ian Hickson authored
      Move the back button and drawer opening logic into the app bar.
      
      Move the tap-status-bar-to-scroll-to-top logic to using
      ScrollControllers. Provide a PrimaryScrollController and a `primary`
      flag on scroll views.
      
      Make it possible to track when a route becomes or stops being poppable.
      83a4cf26
  35. 07 Feb, 2017 2 commits
    • Adam Barth's avatar
      Add PageController (#7948) · 2eb4f2c3
      Adam Barth authored
      This patch improves PageView to the point where we can use it in the date
      picker. Specifically, you now get onPageChanged notifications and you can
      control which page is visible using a PageController.
      2eb4f2c3
    • Adam Barth's avatar
      Add ScrollController (#7910) · 7f2dc470
      Adam Barth authored
      If you pass a ScrollController to a Scrollable2, you can use the controller to
      read and write the scroll offset without having to find the Scrollable2State
      object.
      7f2dc470
  36. 06 Feb, 2017 1 commit