1. 20 Mar, 2018 1 commit
  2. 12 Mar, 2018 1 commit
  3. 15 Feb, 2018 1 commit
  4. 01 Feb, 2018 1 commit
  5. 31 Jan, 2018 1 commit
  6. 27 Jan, 2018 1 commit
  7. 25 Jan, 2018 1 commit
  8. 19 Jan, 2018 1 commit
  9. 21 Jul, 2017 2 commits
    • 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
    • Collin Jackson's avatar
      Fix physics with NestedScrollView (#11326) · e0f3001f
      Collin Jackson authored
      * Fix physics with NestedScrollView
      
      * Review feedback
      e0f3001f
  10. 19 Jul, 2017 1 commit
  11. 08 Jun, 2017 1 commit
  12. 06 Jun, 2017 1 commit
  13. 02 Jun, 2017 1 commit
  14. 03 May, 2017 1 commit
  15. 02 May, 2017 1 commit
    • Ian Hickson's avatar
      Tapping a ScrollView during overscroll got it stuck. (#9721) · f64bfba8
      Ian Hickson authored
      Fixes https://github.com/flutter/flutter/issues/8476
      
      More detailed list of changes in this patch:
      
      * Replaced the didTouch special logic with more generic logic that
        uses Activities instead. Now instead when you tap down the
        Scrollable calls `hold()` which begins a HoldScrollActivity which is
        a hybrid of DragStartDetails and IdleScrollActivity and can be
        canceled. When you let go, it gets canceled and that goes ballistic.
      
      * Make DragGestureRecognizer more aggressive about grabbing pointers,
        otherwise a second pointer in a situation with competing horizontal
        and vertical recognizers always gets taken by the other one.
      
      * Fixed the _GestureSemantics widget to call the "down" callbacks so
        that it follows the same pattern as "real" interactions.
      
      * Added tests for the above.
      
      * Added a hashCode to ScrollActivity.toString (and subclasses).
      
      * Added a toString to ScrollDragController, and include it in
        DragScrollActivity's toString.
      
      * s/coorindator/coordinator/
      
      * Add a comment in DragStartDetails to distinguish it from the
        otherwise identical DragDownDetails, so we're not tempted to merge
        them.
      f64bfba8
  16. 30 Apr, 2017 1 commit
  17. 27 Apr, 2017 1 commit
    • Adam Barth's avatar
      Add NestedScrollView (#9640) · 744c9126
      Adam Barth authored
      A NestedScrollView lets you implement patterns where you have a header, tabs,
      and additional scrollers inside the tabs.
      
      Fixes #8359
      744c9126