123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- import { ColorPalette, createStyleSheet } from '../../../base/styles';
-
- import { styles as platformIndependentStyles } from '../styles';
-
- /**
- * The base/default style of indicators such as audioMutedIndicator,
- * moderatorIndicator, and videoMutedIndicator.
- */
- const indicator = {
- textShadowColor: ColorPalette.black,
- textShadowOffset: {
- height: -1,
- width: 0
- }
- };
-
- /**
- * Native-specific styles for the filmstrip.
- */
- export const styles = createStyleSheet(platformIndependentStyles, {
-
- /**
- * Audio muted indicator style.
- */
- thumbnailIndicator: indicator,
-
- dominantSpeakerIndicator: {
- fontSize: 12
- },
-
- /**
- * Dominant speaker indicator background style.
- */
- dominantSpeakerIndicatorBackground: {
- borderRadius: 16,
- padding: 4
- },
-
- /**
- * Moderator indicator style.
- */
- moderatorIndicator: indicator,
-
- /**
- * Video thumbnail style.
- */
- thumbnail: {
- height: 80,
- width: 80
- }
- });
|