pavankumar
11/13/2021, 5:22 AMLaunchedEffect(Unit) {
launch {
while (true) {
delay(2000)
if (!lazyListState.isScrollInProgress) {
systemUiController.isNavigationBarVisible = false
}
}
}
}
Csaba Kozák
11/13/2021, 9:55 AMLaunchedEffect(lazyListState.isScrollInProgress) {
if (!lazyListState.isScrollInProgress) {
systemUiController.isNavigationBarVisible = false
}
}