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.

29 lines
697 B

1 month ago
/**
*
*
1 month ago
*
*/
// 导出颜色配置
export { default as Colors } from './Colors';
1 month ago
// 导出主题 Hooks
export { useColorScheme, useThemeColor, useThemeColors, useThemeInfo } from '@/hooks/useTheme';
1 month ago
// 导出主题组件
export { ThemedText, ThemedView, Text as ThemeText, View as ThemeView } from '@/components/Themed';
1 month ago
// 导出主题类型
export { ThemeEnum } from '@/constants/theme';
1 month ago
export type {
ThemedTextProps,
ThemedViewProps,
TextProps as ThemeTextProps,
ViewProps as ThemeViewProps,
} from '@/components/Themed';
// 导出主题工具函数
export * from './utils';
export * from './styles';