React Native enthält Navigation nicht eingebaut — die Standard-Lösung ist React Navigation (eine beliebte Bibliothek) zum Wechsel zwischen Screens. Sie stellt Navigatoren (Stack, Tabs, Drawer) bereit und verwaltet den Navigationsstatus, Verlauf und Übergänge.
React Navigation — die Standard-Bibliothek
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
