Initial commit

Generated by create-expo-app 4.0.0.
This commit is contained in:
2026-06-17 15:44:12 -04:00
commit 8a7a8df477
34 changed files with 8307 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
import { useColorScheme as useColorSchemeCore } from 'react-native';
export const useColorScheme = () => {
const coreScheme = useColorSchemeCore();
return coreScheme === 'unspecified' ? 'light' : coreScheme;
};