Problem Statement
Explain how nested navigators work in React Navigation.
Explanation
React Navigation supports nesting navigators inside one another to create complex navigation structures.
For example, you can have a TabNavigator inside a StackNavigator or vice versa. Each nested navigator manages its own navigation state but still communicates with parent navigators for transitions and back actions.