| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 | import { StyleSheet } from 'react-native';
import { BoxModel, ColorPalette, createStyleSheet } from '../../base/styles';
import { FILMSTRIP_SIZE } from '../../filmstrip';
/**
 * Size for the Avatar.
 */
export const AVATAR_SIZE = 200;
export default createStyleSheet({
    /**
     * View that contains the indicators.
     */
    indicatorContainer: {
        flex: 1,
        flexDirection: 'row',
        margin: BoxModel.margin,
        position: 'absolute',
        right: 0,
        // Both on Android and iOS there is the status bar which may be visible.
        // On iPhone X there is the notch. In the two cases BoxModel.margin is
        // not enough.
        top: BoxModel.margin * 3
    },
    /**
     * Indicator container for wide aspect ratio.
     */
    indicatorContainerWide: {
        right: FILMSTRIP_SIZE
    },
    /**
     * Large video container style.
     */
    largeVideo: {
        ...StyleSheet.absoluteFillObject,
        alignItems: 'stretch',
        backgroundColor: ColorPalette.appBackground,
        flex: 1,
        justifyContent: 'center'
    }
});
 |