-
-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Keyboard not displayed #16
Comments
Hey @AnthonyPicquet, do you mean this issue happens only with the non-modal option? For me, it works well with the modal option. |
+1 keyboard does not open when isModal = false. when isModal = true keyboard opens but the keyboard and the backdrop behave weird and slide up. also i get this log ris() |
@skydoves can u look into this. planning to use this library in production |
Same here. We wanted to add a text input field into the bottom sheet in non-modal mode but couldn't show the keyboard. We are planning to use this library for production too. Thanks! |
has anyone found a solution for isModel = false |
Same |
Would be nice to have a fix for this |
Hey team, I'm facing the same issue here, now on the version 0.1.5, the iOS side is not working at all, either isModal = true or false, the keyboard is not showing up. I hope @skydoves can help us here with an update, otherwise my best suggestion is move out of this library and use the official Compose ModalBottomSheet. Just as a test I changed my implementation and it's working pretty good. 👋 |
+1 for this issue on Andriod, Modal works correctly however non-Modal still shows no keybaord. |
I've encountered the same issue and dug a bit within the library code. Within // Flags specific to flexible bottom sheet.
flags = if (sheetState.isModal) {
flags and (
WindowManager.LayoutParams.FLAG_IGNORE_CHEEK_PRESSES or
WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM
).inv()
} else {
flags or WindowManager.LayoutParams.FLAG_IGNORE_CHEEK_PRESSES or
WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM or
WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE or
WindowManager.LayoutParams.FLAG_WATCH_OUTSIDE_TOUCH or
WindowManager.LayoutParams.FLAG_SPLIT_TOUCH
} I think the |
Please complete the following information:
Describe the Bug:
I've added a text field to the content of the bottom flexible sheet.
When clicked, the keyboard is not displayed.
is it possible to show the keyboard below the text field in the bottom sheet ?
The text was updated successfully, but these errors were encountered: