1. 05 May, 2017 2 commits
  2. 04 May, 2017 11 commits
  3. 03 May, 2017 22 commits
  4. 02 May, 2017 5 commits
    • 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
    • xster's avatar
      CocoaPods flow step 3 - don't automatically pod setup (#9703) · 85b2b869
      xster authored
      * Don’t automatically pod setup if the user never did it
      
      * fix/add test
      
      * rename getters
      85b2b869
    • Devon Carew's avatar
      fix an issue with reloading when paused at a breakpoint (#9733) · 7fb6646c
      Devon Carew authored
      * fix an issues with reloading when paused at a breakpoint
      
      * update docs
      7fb6646c
    • Chris Bracken's avatar
      Pass package/activity in AndroidBackButtonMemoryTest (#9738) · 7f9d859e
      Chris Bracken authored
      Eliminates Gallery-specific hardcoding of app package and activity name
      in the test.
      
      Fixes breakage introduced with 1dc2d4eb
      due to main activity class now being MainActivity.
      7f9d859e
    • Chris Bracken's avatar
      1dc2d4eb