Namiq Tehmezli
Namiq Tehmezli

Reputation: 93

Detect Gesture Velocity in Flutter

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

Answers (1)

Richard Heap
Richard Heap

Reputation: 51682

The DragEndDetails passed to the onXXXDragEnd callback of GestureDetector contains the velocity.

Upvotes: 5

Related Questions