Skip to content

Commit b71ee89

Browse files
fix(android): modal focus with physical keyboard on Android (#7056)
1 parent 953aef7 commit b71ee89

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/stacks/MasterDetailStack/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ const InsideStackNavigator = React.memo(() => {
217217
screenOptions={{
218218
...defaultHeader,
219219
...themedHeader(theme),
220-
presentation: 'containedTransparentModal'
220+
presentation: isIOS ? 'containedTransparentModal' : 'containedModal'
221221
}}>
222222
<InsideStack.Screen name='DrawerNavigator' component={DrawerNavigator} options={{ headerShown: false }} />
223223
<InsideStack.Screen name='ModalStackNavigator' component={ModalStackNavigator} options={{ headerShown: false }} />

0 commit comments

Comments
 (0)