Keyboard access to React Navigation "formSheet" screen on Android #92
Replies: 1 comment 1 reply
-
Hello @timoisalive, Sorry for the delay with my reply, but I have been busy lately. I guess it depends on the React Native also provides the <View importantForAccessibility="no-hide-descendants">...</View> It should prevent the reader and keyboard focus from getting inside. Alternatively, I think it might be possible to patch or add functionality to I will try to look into this, but it might take some time. If you have any additional questions or notes, I would be glad to help. Regards, |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
We'd like to use the React Navigation "formSheet" presentation mode to implement our bottom sheets, but unfortunately on Android the screen content does not automatically get focused, but the focus stays on the underlying screen.
Ideally, this should get fixed in the
react-native-screens
library, but I was thinking if I could workaround it withreact-native-external-keyboard
. I am able to get the screen content focused, but the focus does not stay within the formSheet screen, it cycles between the components of the underlying screen and the sheet screen.So the question is if there is a way to restrict the focusable components within the formSheet screen?
Beta Was this translation helpful? Give feedback.
All reactions