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

styles.ts 452B

1234567891011121314151617181920
  1. import BaseTheme from '../../../base/ui/components/BaseTheme.native';
  2. export default {
  3. displayNameBackdrop: {
  4. alignSelf: 'center',
  5. backgroundColor: BaseTheme.palette.ui01,
  6. borderRadius: BaseTheme.shape.borderRadius,
  7. padding: 6
  8. },
  9. displayNamePadding: {
  10. paddingRight: 6
  11. },
  12. displayNameText: {
  13. color: BaseTheme.palette.text01,
  14. fontSize: 14,
  15. fontWeight: 'bold'
  16. }
  17. };