SA
Size: a a a
SA
SA
VP
SA
ST
N
N
N
N
ST
N
ST
ВУ
AM
AM
ST
AM
import { TransitionPresets } from '@react-navigation/stack';
// ...
<Stack.Navigator
initialRouteName="Home"
screenOptions={{
gestureEnabled: true,
cardOverlayEnabled: true,
...TransitionPresets.ModalPresentationIOS,
}}
mode="modal"
headerMode="none"
>
<Stack.Screen name="Home" component={Home} />
<Stack.Screen name="Profile" component={Profile} />
</Stack.Navigator>;
AM
AM
ST