Paul Woitaschek
04/11/2021, 7:07 PMzalewski.se
04/11/2021, 8:24 PMRikin Marfatia
04/11/2021, 11:06 PMknthmn
04/12/2021, 1:31 AMvar isTouching by remember { mutableStateOf(false) } // if you use slider you can observe this by InteractionSource
var sliderValue by remember { mutableStateOf(player.position) }
LaunchedEffect(player.position) {
if (!isTouching) sliderValue = player.position
}