Khởi tạo ban đầu
This commit is contained in:
30
components/themed-view.tsx
Normal file
30
components/themed-view.tsx
Normal file
@@ -0,0 +1,30 @@
|
||||
import { View, type ViewProps } from "react-native";
|
||||
|
||||
import { useThemeColor } from "@/hooks/use-theme-color";
|
||||
|
||||
export type ThemedViewProps = ViewProps & {
|
||||
lightColor?: string;
|
||||
darkColor?: string;
|
||||
className?: string;
|
||||
};
|
||||
|
||||
export function ThemedView({
|
||||
style,
|
||||
className = "",
|
||||
lightColor,
|
||||
darkColor,
|
||||
...otherProps
|
||||
}: ThemedViewProps) {
|
||||
const backgroundColor = useThemeColor(
|
||||
{ light: lightColor, dark: darkColor },
|
||||
"background"
|
||||
);
|
||||
|
||||
return (
|
||||
<View
|
||||
className={className}
|
||||
style={[{ backgroundColor }, style]}
|
||||
{...otherProps}
|
||||
/>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user