React Native'de state yönetimi (React'te olduğu gibi), yerel bileşen state'i (useState) ile başlayıp Context aracılığıyla paylaşılan/global state'e, ya da Redux, Zustand ve diğerleri gibi kütüphanelere kadar uzanır. Uygulamalar büyüdükçe seçenekleri ve her birinin ne zaman kullanılacağını anlamak önemlidir.
Yerel state ve state'i yukarı taşıma
useState → local component state (simple, for one component)
LIFTING STATE UP → move shared state to a common parent, pass down via props
→ works for moderate sharing, but "PROP DRILLING" (passing through many layers) is painful
