Is it possible to load particular screen in react native without navigation

Viewed 24

I am using react native 0.64, I want to load my profile screen from home screen without using navigation. Is it possible? Can anyone help?

1 Answers

You should use a state for represent home or profile. for ex:

    function HomeScreen() {
     const [screenName, setScreenName] = useState('home')
     if (screenName == 'profile') {
      return <ProfileScreen/>
     }
     return {
...
      // handling the event to go Profile screen
      setScreenName('profile')
...
     }
    }
Related