How can I detect vertical swipe on left side and right side of a composable separately?
z
How can I detect vertical swipe on left side and right side of a composable separately?
k
Put some invisible `Box`es that fit the space you want to detect on top of your composable and do the swipe detection on each of them, that's one way I'd do it, of course your composable contents and the boxes should be inside another
Box