1. 29 Apr, 2019 1 commit
  2. 01 Mar, 2019 1 commit
    • Alexandre Ardhuin's avatar
      Add missing trailing commas (#28673) · 387f8854
      Alexandre Ardhuin authored
      * add trailing commas on list/map/parameters
      
      * add trailing commas on Invocation with nb of arg>1
      
      * add commas for widget containing widgets
      
      * add trailing commas if instantiation contains trailing comma
      
      * revert bad change
      387f8854
  3. 25 Feb, 2019 1 commit
    • jslavitz's avatar
      Breaks the moveBy call from drag and dragFrom into two separate calls and... · 47724f97
      jslavitz authored
      Breaks the moveBy call from drag and dragFrom into two separate calls and changes the default behavior of DragStartBehavior to DragStartBehavior.start (#26438)
      
      * Breaking change which sets the default DragStartBehavior to DragStartBehavior.start and changes WidgetTester.drag and WidgetTester.dragFrom by breaking the moveBy function call into multiple pieces.
      47724f97
  4. 29 Jan, 2019 1 commit
  5. 16 Oct, 2018 1 commit
  6. 12 Sep, 2018 1 commit
  7. 02 Aug, 2018 1 commit
  8. 27 Jul, 2018 1 commit
  9. 23 Jul, 2018 1 commit
  10. 16 Jul, 2018 2 commits
  11. 18 May, 2018 1 commit
  12. 19 Apr, 2018 1 commit
    • xster's avatar
      Fine-tune iOS's scroll start feel (#16721) · 133c98a8
      xster authored
      * Fine-tune iOS's scroll start feel
      
      * remove negations in doc
      
      * Our own dart-side gesture arena also contributes to the 'jerk'. Make sure that snap is accounted as well.
      
      * Added more code comments from review.
      133c98a8
  13. 12 Mar, 2018 1 commit
  14. 30 Nov, 2017 1 commit
  15. 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
  16. 20 Sep, 2017 1 commit
    • xster's avatar
      Scroll momentum builds on iOS with repeated flings (#11685) · 59b94185
      xster authored
      * Record original pointer event timestamp
      
      * review
      
      * review
      
      * review
      
      * Matched motions with iOS. Didn’t add overscroll spring clamps and fix tests yet.
      
      * clamp max overscroll transfer
      
      * Add test
      
      * review notes, moved things around
      
      * remove function passing indirection
      
      * review
      
      * Replace stopwatch with timestamp from #11988
      
      * move static
      
      * Review
      59b94185
  17. 21 Jun, 2017 3 commits
  18. 02 Jun, 2017 1 commit
  19. 06 May, 2017 1 commit
  20. 05 May, 2017 1 commit
  21. 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
  22. 30 Apr, 2017 1 commit
  23. 27 Apr, 2017 1 commit
  24. 25 Apr, 2017 1 commit