Reputation: 93
I am looking for a way to detect the gesture velocity in Flutter. Like assume that you want to detect vertical gesture. Is it possible to detect how fast user swiped and apply action accordingly?
I have googled but could not find a way to detect velocity of gesture in Flutter.
Thanks in advance.
Upvotes: 2
Views: 1537
Reputation: 51682
The DragEndDetails
passed to the onXXXDragEnd
callback of GestureDetector
contains the velocity.
Upvotes: 5