1. 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
  2. 28 Feb, 2018 1 commit
  3. 15 Feb, 2018 1 commit
  4. 25 Jan, 2018 1 commit
  5. 30 Nov, 2017 1 commit
  6. 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
  7. 21 Sep, 2017 1 commit
  8. 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
  9. 23 Aug, 2017 1 commit
  10. 15 Jul, 2017 1 commit
  11. 06 Jul, 2017 1 commit
    • xster's avatar
      Match non-linear overscroll spring to iOS (#11065) · 47c4d64f
      xster authored
      * Make the drag resistance non-linear
      
      * Let the easing of overscroll have a spring effect too
      
      * Add tests and prevent possible drift by having a slightly smaller resistance when easing the overscroll
      
      * lint
      47c4d64f
  12. 05 May, 2017 2 commits
  13. 03 May, 2017 2 commits
  14. 02 May, 2017 2 commits
  15. 25 Apr, 2017 1 commit
  16. 21 Mar, 2017 1 commit
  17. 17 Mar, 2017 1 commit
  18. 04 Mar, 2017 1 commit
  19. 03 Mar, 2017 1 commit
  20. 23 Feb, 2017 1 commit
  21. 22 Feb, 2017 1 commit
  22. 17 Feb, 2017 1 commit
  23. 10 Feb, 2017 1 commit
  24. 03 Feb, 2017 1 commit
    • Adam Barth's avatar
      Reparameterize Scrollable2 (#7853) · 072cce88
      Adam Barth authored
      This patch makes a number of changes to how you can configure a
      Scrollable2:
      
       - The ScrollPhysics is now responsible for creating the ScrollPosition.
         You can override the ScrollPhysics by supplying a `physics` argument
         to `Scrollable`, and the new physics you supply will be applied to
         the default physics inherited from the ScrollBehavior.
      
       - This patch removes the ScrollPosition/AbsoluteScrollPosition split as
         all clients were operating in pixels anyway and the split made the
         code very difficult to follow.
      
       - ScrollPosition no longer depends directly on Scrollable2State.
         Instead, it depends on an abstract interface that Scrollable2State
         implements. This change has two benefits:
      
          a) It removes the circular dependency between ScrollPosition and
             Scrollable2State, which lets us split the code for these classes
             (and several other classes that got wrapped up in that cycle) into
             separate libraries for easier maintenance.
      
          b) ScrollPosition is no longer bound to Scrollable2, which means you
             could use the behavior machinery to drive other sorts of widgets.
             For example, we could use it to drive Scrollabe1 if we wanted.
      072cce88