Problem Statement
How do you navigate to another screen in React Navigation?
Explanation
Each screen receives a navigation prop that provides methods to control navigation.
navigation.navigate('ScreenB') moves to ScreenB if it’s part of the navigator hierarchy.
Code Solution
SolutionRead Only
navigation.navigate('Profile');