您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

BaseTheme.native.ts 294B

123456789101112
  1. import { colorMap, font, shape, spacing, typography } from '../Tokens';
  2. import { createNativeTheme } from '../functions.native';
  3. import updateTheme from './updateTheme.native';
  4. export default createNativeTheme(updateTheme({
  5. font,
  6. colorMap,
  7. spacing,
  8. shape,
  9. typography
  10. }));