Files
rn-app/theme/index.ts

37 lines
657 B
TypeScript
Raw Normal View History

2025-11-06 16:37:01 +08:00
/**
*
*
*
*/
// 导出颜色配置
export { default as Colors } from '@/constants/Colors';
// 导出主题 Hooks
export {
useColorScheme,
useThemeColor,
useThemeColors,
useThemeInfo,
} from '@/hooks/useTheme';
// 导出主题组件
export {
ThemedText,
ThemedView,
Text as ThemeText,
View as ThemeView,
} from '@/components/Themed';
export type {
ThemedTextProps,
ThemedViewProps,
TextProps as ThemeTextProps,
ViewProps as ThemeViewProps,
} from '@/components/Themed';
// 导出主题工具函数
export * from './utils';
export * from './styles';