Files
SeaGateway-App/components/themed-view.tsx
Tran Anh Tuan 45dc7d1ff8 Initial commit
Generated by create-expo-app 3.5.3.
2025-10-29 09:38:54 +07:00

15 lines
470 B
TypeScript

import { View, type ViewProps } from 'react-native';
import { useThemeColor } from '@/hooks/use-theme-color';
export type ThemedViewProps = ViewProps & {
lightColor?: string;
darkColor?: string;
};
export function ThemedView({ style, lightColor, darkColor, ...otherProps }: ThemedViewProps) {
const backgroundColor = useThemeColor({ light: lightColor, dark: darkColor }, 'background');
return <View style={[{ backgroundColor }, style]} {...otherProps} />;
}