Is there any way to listen for keyboard events? (w...
# compose
d
Is there any way to listen for keyboard events? (when the keyboard is shown and when the keyboard is hidden (without pressing next/done) inside a composable?)
d
U can check keyboard visibility by using
Copy code
LocalWindowInsets.current.ime.isVisible
👍 1
d
Thanks!!