React Native मा navigation built-in छैन — standard solution React Navigation (एक लोकप्रिय library) हो जसले screens बीच सर्न दिन्छ। यसले 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
