React Native-ல் navigation built-in ஆக இல்லை — screen-களுக்கு இடையே நகர்வதற்கான standard solution React Navigation (ஒரு popular library). இது navigators (stack, tabs, drawer) வழங்குகிறது மற்றும் navigation state, history, மற்றும் transitions-ஐ கையாளுகிறது.
React Navigation — the standard library
Navigation isn't built into React Native → use REACT NAVIGATION (the de facto standard):
→ provides NAVIGATORS that structure how users move between screens:
STACK navigator → push/pop screens (like a stack — forward/back, the most common)
TAB navigator → bottom/top tabs (switch between sections)
DRAWER navigator → a side drawer menu
→ handles navigation state, history (back stack), transitions, headers
