Khởi tạo ban đầu
This commit is contained in:
29
components/tripInfo/ThemedTable.tsx
Normal file
29
components/tripInfo/ThemedTable.tsx
Normal file
@@ -0,0 +1,29 @@
|
||||
/**
|
||||
* Wrapper component to easily apply theme-aware table styles
|
||||
*/
|
||||
|
||||
import React, { useMemo } from "react";
|
||||
import { View, ViewProps } from "react-native";
|
||||
import { useAppTheme } from "@/hooks/use-app-theme";
|
||||
import { createTableStyles } from "./style/createTableStyles";
|
||||
|
||||
interface ThemedTableProps extends ViewProps {
|
||||
children: React.ReactNode;
|
||||
}
|
||||
|
||||
export function ThemedTable({ style, children, ...props }: ThemedTableProps) {
|
||||
const { colorScheme } = useAppTheme();
|
||||
const tableStyles = useMemo(
|
||||
() => createTableStyles(colorScheme),
|
||||
[colorScheme]
|
||||
);
|
||||
|
||||
return (
|
||||
<View style={[tableStyles.container, style]} {...props}>
|
||||
{children}
|
||||
</View>
|
||||
);
|
||||
}
|
||||
|
||||
export { createTableStyles };
|
||||
export type { TableStyles } from "./style/createTableStyles";
|
||||
Reference in New Issue
Block a user