feat(mobile): Implement persistent theme selection

This commit is contained in:
2025-12-06 14:08:00 +00:00
parent ed0faaa4d6
commit 19ff225762
7 changed files with 146 additions and 19 deletions

View File

@@ -1 +1,6 @@
export { useColorScheme } from 'react-native';
import { useTheme } from '@/context/ThemeContext';
export function useColorScheme() {
const { colorScheme } = useTheme();
return colorScheme;
}