選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

styles.js 515B

12345678910111213141516171819
  1. import { ColorPalette, createStyleSheet } from '../../base/styles';
  2. import BaseTheme from '../../base/ui/components/BaseTheme.native';
  3. export const AUD_LABEL_COLOR = ColorPalette.green;
  4. /**
  5. * The styles of the React {@code Components} of the feature video-quality.
  6. */
  7. export default createStyleSheet({
  8. /**
  9. * Style for the audio-only indicator.
  10. */
  11. indicatorAudioOnly: {
  12. backgroundColor: AUD_LABEL_COLOR,
  13. borderRadius: BaseTheme.shape.borderRadius,
  14. height: 32
  15. }
  16. });