only use dark mode

This commit is contained in:
2025-08-28 16:25:57 +05:00
parent 213062bda4
commit 6797ab6d9e

View File

@@ -1 +1,6 @@
export { useColorScheme } from 'react-native';
// The useColorScheme value is always either light or dark, but the built-in
// type suggests that it can be null. This will not happen in practice, so this
// makes it a bit easier to work with.
export function useColorScheme(): 'light' | 'dark' {
return 'dark';
}