-
Hi, just a quick question, is there an equivalent of ScrollEnded event to prevent tap gestures on items when the CarouselView is actually scrolling? Asking as I just noticed the IsDragging property and the Scrolled event, which are not ideal considering the IsDragging becomes false as soon as user has released finger. I couldn't find a similar ticket, let me know if I should log this improvement behaviour, thanks. |
Beta Was this translation helpful? Give feedback.
Answered by
Kapusch
Aug 4, 2025
Replies: 1 comment 3 replies
-
I think official documentation on detecting scrolling for CarouselView can help you get started. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Here's what suits my needs:
And so, because
IsDragging
is changed totrue
andisCardCommandEnabled
is changed tofalse
, then my command can't execute.However, if I detect
PointerPressed
andIsDragging
is defined tofalse
, then I must re-enable the command execution.