A React Native nem tartalmaz beépített navigációt — a standard megoldás a React Navigation (egy népszerű könyvtár) a képernyők közötti mozgáshoz. Navigátorokat (stack, tabs, drawer) biztosít, és kezeli a navigációs állapotot, az előzményt és az átmeneteket.
React Navigation — a standard könyvtár
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
