Can I use the forwarding function to go to slideshow from above?

I am using inline navigation to navigate between screens. I want a new screen to appear at the top of the screen. Is it possible?

This is my code:

const ModalStack = StackNavigator({
  Home: {
    screen: MyHomeScreen,
  },
  Profile: {
    path: 'people/:name',    
    screen: MyProfileScreen,
  },
});

      

+3


source to share





All Articles