Build: ThemeSwitcher
A screen that lets users switch between light and dark themes using React Native Context API.
Target UI
------------------------- | ThemeSwitcher | |-----------------------| | Current Theme: Light | | | | [Toggle Theme Button] | -------------------------
Create a ThemeContext with 'light' as default value.
Use Context Provider to share theme state across the app.
Display current theme text on screen.
Add a button that toggles theme between 'light' and 'dark'.
Update displayed theme text when toggled.