Component - Context API
The Context API in React Native allows components to share data easily without passing props through every level. It helps manage global data like themes or user info across the app.
The Context API in React Native allows components to share data easily without passing props through every level. It helps manage global data like themes or user info across the app.
App ├─ ThemeContext.Provider │ └─ View │ ├─ Text (Theme: Light or Dark) │ └─ Button (Toggle Theme)