Problem Statement
What problem does the Context API solve in React Native?
Explanation
The Context API allows data to be shared globally without manually passing props through multiple component levels.
It’s commonly used for global themes, authentication data, or language settings.