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

styles.js 418B

12345678910111213141516
  1. // @flow
  2. import { ColorPalette } from '../../base/styles';
  3. export const ENABLED_THUMB_COLOR = ColorPalette.blueHighlight;
  4. export const ENABLED_TRACK_COLOR = ColorPalette.blue;
  5. export const DISABLED_THUMB_COLOR = ColorPalette.darkGrey;
  6. export default {
  7. roomLockSwitchContainer: {
  8. alignItems: 'center',
  9. flexDirection: 'row',
  10. justifyContent: 'space-between',
  11. marginTop: 16
  12. }
  13. };