I'm trying to display a swipe indicator once the swipe reaches a threshold. This code works, but it makes the swiping really unresponsive. Is there a better way to achieve this?
val cardStackState = rememberLazyCardStackState()
val showSwipeIndicator by remember {
derivedStateOf {
cardStackState.offset.x > 200
}
}