Is there anyway to show/hide system bars on list s...
# compose
p
Is there anyway to show/hide system bars on list scroll in compose. I tried below approach but no success. Any clues?
Copy code
LaunchedEffect(Unit) {
            launch {
                while (true) {
                    delay(2000)
                    if (!lazyListState.isScrollInProgress) {
                        systemUiController.isNavigationBarVisible = false
                    }
                }
            }
        }
c
Copy code
LaunchedEffect(lazyListState.isScrollInProgress) {
if (!lazyListState.isScrollInProgress) {
                        systemUiController.isNavigationBarVisible = false
}
}
👍 2