Initial commit
Generated by create-expo-app 3.3.0.
This commit is contained in:
commit
84c0d8ecd0
38 changed files with 15429 additions and 0 deletions
21
hooks/useThemeColor.ts
Normal file
21
hooks/useThemeColor.ts
Normal file
|
@ -0,0 +1,21 @@
|
|||
/**
|
||||
* Learn more about light and dark modes:
|
||||
* https://docs.expo.dev/guides/color-schemes/
|
||||
*/
|
||||
|
||||
import { Colors } from '@/constants/Colors';
|
||||
import { useColorScheme } from '@/hooks/useColorScheme';
|
||||
|
||||
export function useThemeColor(
|
||||
props: { light?: string; dark?: string },
|
||||
colorName: keyof typeof Colors.light & keyof typeof Colors.dark
|
||||
) {
|
||||
const theme = useColorScheme() ?? 'light';
|
||||
const colorFromProps = props[theme];
|
||||
|
||||
if (colorFromProps) {
|
||||
return colorFromProps;
|
||||
} else {
|
||||
return Colors[theme][colorName];
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue