3

I'm developing a small jetpack-compose demo chat app. So I need a bar at the bottom with a TextField and a Button to send, just like in WhatsApp.... I figured it would be best to use a Scaffold with a bottomBar.

The problem now is, the bottomBar, is hidden behind the keyboard, when the keyboard opens. Any way around this?

supermar10
  • 145
  • 1
  • 9

1 Answers1

1

You probably should try to push your bottomBar by keyboard's inset, using Accompanist lib. https://google.github.io/accompanist/insets/

AmirKonovalov
  • 121
  • 1
  • 4