React Native میں navigation built-in نہیں ہے — معیاری حل React Navigation (ایک مقبول library) ہے جو screens کے درمیان منتقلی کے لیے ہے۔ یہ navigators (stack, tabs, drawer) فراہم کرتی ہے اور navigation state، history، اور transitions کو سنبھالتی ہے۔
React Navigation — معیاری 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
