Issue Description
Overlay display over ActionSheet, after close modal with focused TextInput
Steps to Reproduce / Code Snippets / Screenshots
ActionSheet displays over Overlay.
- Create a modal screen that includes TextInput by calling Navigation.showModal();
- Set focus in TextInput;
- Dismiss the modal screen by calling Navigation.dismissAllModals() or Navigation.dismissModal();
- RESULT - ActionSheet displays under Overlay.
Navigation.showOverlay({
component: {
id: 'OVERLAY',
name: OVERLAY,
options: {
overlay: {
interceptTouchOutside: false,
handleKeyboardEvents: true,
},
},
},
});
Environment
- React Native Navigation version: 2.18.0
- React Native version: 0.57.8
- Platform(s) (iOS, Android, or both?): iOS
- Device info (Simulator/Device? OS version? Debug/Release?): Simulator & Device, iOS 12.2, Debug & Release
Issue Description
Overlay display over ActionSheet, after close modal with focused TextInput
Steps to Reproduce / Code Snippets / Screenshots
ActionSheet displays over Overlay.
Environment