Hi all, what is the best way to animate `show/hid...
# compose
b
Hi all, what is the best way to animate
show/hide
of keyboard ?
Copy code
val keyboardController = LocalSoftwareKeyboardController.current
keyboardController?.hide() // How to animate the visibility ?
should we do something like
Copy code
AnimatedVisibility(visible = shouldHide) {
        keyboardController?.hide()
    }
z
c
I think accompanist inset has a way to do this if im not mistaken?
b
@Zun thanks