Swipeable users, are any of you using `thresholds`...
# compose
j
Swipeable users, are any of you using
thresholds
to define custom thresholds based on the origin and/or target? For example:
Copy code
Box(Modifier.swipeable(thresholds = { from, to -> if (from == A) FixedThreshold(56.dp) else FractionalThreshold(0.5f) }))
d
wrote several swipeable-based composables, never customized default thresholds...