pavankumar
LaunchedEffect(Unit) { launch { while (true) { delay(2000) if (!lazyListState.isScrollInProgress) { systemUiController.isNavigationBarVisible = false } } } }
Csaba Kozák
LaunchedEffect(lazyListState.isScrollInProgress) { if (!lazyListState.isScrollInProgress) { systemUiController.isNavigationBarVisible = false } }
A modern programming language that makes developers happier.