Is there any nice way in JC to show/hide navigatio...
# compose-android
z
Is there any nice way in JC to show/hide navigation bar without animation? 🤔 Currently I have this but obviously, it’s with animation:
Copy code
val systemUiController = rememberSystemUiController()
DisposableEffect(transformationState) {
   systemUiController.isNavigationBarVisible = isNavigationBarVisible
   onDispose {}
}
b
I don't think so, it just calls the system API underneath so is out of our control
z
Instagram somehow does it, so there must be a way 🤔