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

styles.js 366B

123456789101112131415161718
  1. // @flow
  2. import { ColorPalette } from '../../../base/styles';
  3. export default {
  4. displayNameBackdrop: {
  5. alignSelf: 'center',
  6. backgroundColor: 'rgba(28, 32, 37, 0.6)',
  7. borderRadius: 4,
  8. paddingHorizontal: 16,
  9. paddingVertical: 4
  10. },
  11. displayNameText: {
  12. color: ColorPalette.white,
  13. fontSize: 14
  14. }
  15. };