1. 02 Mar, 2018 1 commit
  2. 19 Jan, 2018 1 commit
  3. 03 Sep, 2017 1 commit
  4. 01 Sep, 2017 2 commits
  5. 28 Aug, 2017 1 commit
    • Ian Hickson's avatar
      RTL: Padding, Flex (#11709) · f235a2c1
      Ian Hickson authored
      * Introduce a Directionality inherited widget which sets the ambient LTR vs RTL mode (defaulting to null, which means you cannot use directionality-influenced values).
      
      * Make it possible to configure Padding (including Container.padding and Container.margin) using a directionality-agnostic EdgeInsets variant.
      
      * Provide textDirection and verticalDirection controls on Row and Column to make them RTL-aware.
      
      * Introduce a variant of FractionalOffset based on the EdgeInsets variant. Not yet actually used.
      
      * Fix all the tests that depended on Row defaulting to LTR.
      f235a2c1
  6. 28 Jul, 2017 1 commit
  7. 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
  8. 19 Jul, 2017 1 commit
  9. 21 Jun, 2017 3 commits
  10. 20 Jun, 2017 1 commit
    • Ian Hickson's avatar
      Text selection handles track scrolled text fields (#10805) · 6d32b339
      Ian Hickson authored
      Introduce CompositedTransformTarget and CompositedTransformFollower
      widgets, corresponding render objects, and corresponding layers.
      
      Adjust the way text fields work to use this.
      
      Various changes I needed to debug the issues that came up.
      6d32b339
  11. 09 Jun, 2017 1 commit
  12. 08 Jun, 2017 1 commit
  13. 06 Jun, 2017 1 commit
  14. 02 Jun, 2017 1 commit
  15. 03 May, 2017 1 commit
  16. 02 May, 2017 2 commits
  17. 27 Apr, 2017 1 commit
    • Adam Barth's avatar
      Shift more code to ScrollPosition (#9637) · 4bac2596
      Adam Barth authored
      Previously, ScrollPosition did not know about ScrollActivities. However, all
      the concrete subclasses of ScrollPosition that we know about need to use
      ScrollActivities, so they ended up with a bunch of delegate boilerplate code.
      
      This patch teaches ScrollPosition about ScrollActivities but doesn't have any
      opinion about how to start or interact with those activities.
      
      This patch is more refactoring to prepare for nested and linked scrolling.
      4bac2596
  18. 25 Apr, 2017 1 commit
  19. 29 Mar, 2017 1 commit
  20. 14 Mar, 2017 1 commit
  21. 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
  22. 17 Feb, 2017 1 commit
  23. 11 Feb, 2017 1 commit
  24. 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
  25. 07 Feb, 2017 3 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.initialScrollOffset (#7916) · 06f879b5
      Adam Barth authored
      Also, move the creation of the ScrollPosition to ScrollController.
      
      Finally, remove TestScrollable in favor of CustomScrollView, which is the
      production version of this widget.
      06f879b5
    • 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