Daniel Weidensdörfer
07/31/2021, 10:52 AMswipeableState
like in this example: https://developer.android.com/jetpack/compose/gestures#swiping . Since swipeableState.snapTo(...)
is a suspend function, I probably need to call it from a side effect. Whats the correct way to call this function inside of a composable?ms
07/31/2021, 1:00 PMrememberCoroutineScope()
Sean McQuillan [G]
07/31/2021, 3:06 PMLaunchedEffect
is a good go-to side effect for coroutinesDaniel Weidensdörfer
07/31/2021, 4:02 PM