stipsan / react-spring-bottom-sheet

Accessible ♿️, Delightful ✨, & Fast 🚀
https://react-spring.bottom-sheet.dev/
MIT License
946 stars 129 forks source link

Bottomsheet above keyboard in android #247

Open amanmamgain9 opened 1 year ago

amanmamgain9 commented 1 year ago

image

Is there a way to make bottomsheet start above the keyboard component

dmontes7 commented 1 year ago

Hi, I solved this adding this to the Main Activity in the androidManifest.xml file:

android:windowSoftInputMode="adjustResize"

This resizes the screen (MainActivity) when the keyboard appears. Thanks.