You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ThemedView.tsx 468B

1234567891011121314
  1. import { View, type ViewProps } from 'react-native';
  2. import { useThemeColor } from '@/hooks/useThemeColor';
  3. export type ThemedViewProps = ViewProps & {
  4. lightColor?: string;
  5. darkColor?: string;
  6. };
  7. export function ThemedView({ style, lightColor, darkColor, ...otherProps }: ThemedViewProps) {
  8. const backgroundColor = useThemeColor({ light: lightColor, dark: darkColor }, 'background');
  9. return <View style={[{ backgroundColor }, style]} {...otherProps} />;
  10. }