I'm using stack navigator in my react-native app, i have set the mode to modal so the screen gets pushed from the bottom, it's working fine but is there a way to specify this mode for specific screens only?
const App = createStackNavigator({
Home: { screen: Home },
},
{
mode: 'modal',
}
);