| 1234567891011121314 |
- import { View, type ViewProps } from 'react-native';
- import { Colors, ThemeColor } from '@/constants/theme';
- export type ThemedViewProps = ViewProps & {
- lightColor?: string;
- darkColor?: string;
- type?: ThemeColor;
- };
- export function ThemedView({ style, lightColor, darkColor, type, ...otherProps }: ThemedViewProps) {
- return <View style={[{ backgroundColor: Colors[type as keyof typeof Colors] as any ??Colors.background }, style]} {...otherProps} />;
- }
|