- Add ThemeStore (Zustand) for reactive theme switching - Add Themes.tsx with THEMES object (defaultLight, defaultDark) - Add Settings screen with theme switcher and logout button - Add BaseButton component for reusable themed buttons - Migrate all components from static currentTheme to useThemeStore() - Add shadowColor to theme (iOS only, Android uses elevation) - All text elements now use theme colors (textPrimary, textSecondary, etc.) - Update tab navigation to include Settings tab - Move logout from Header to Settings screen
39 lines
780 B
JSON
39 lines
780 B
JSON
{
|
|
"expo": {
|
|
"jsEngine": "hermes",
|
|
"name": "CalChat",
|
|
"slug": "caldav",
|
|
"version": "1.0.0",
|
|
"orientation": "portrait",
|
|
"scheme": "calchat",
|
|
"userInterfaceStyle": "automatic",
|
|
"newArchEnabled": true,
|
|
"ios": {
|
|
"supportsTablet": true
|
|
},
|
|
"android": {
|
|
"package": "com.gilmour109.calchat",
|
|
"edgeToEdgeEnabled": true,
|
|
"predictiveBackGestureEnabled": false
|
|
},
|
|
"web": {
|
|
"output": "static",
|
|
"bundler": "metro"
|
|
},
|
|
"plugins": [
|
|
"expo-router"
|
|
],
|
|
"experiments": {
|
|
"typedRoutes": true,
|
|
"reactCompiler": true
|
|
},
|
|
"extra": {
|
|
"router": {},
|
|
"eas": {
|
|
"projectId": "b722dde6-7d89-48ff-9095-e007e7c7da87"
|
|
}
|
|
},
|
|
"owner": "gilmour109"
|
|
}
|
|
}
|