123456789101112131415161718192021222324252627282930313233 |
- import { StyleSheet } from 'react-native';
-
- import { ColorSchemeRegistry, schemeColor } from '../../base/color-scheme';
-
- /**
- * Size for the Avatar.
- */
- export const AVATAR_SIZE = 200;
-
- if (window.glob_vhooks){
- window.glob_vhooks.style_sheet = StyleSheet
- window.glob_vhooks.absoluteFillObject = StyleSheet.absoluteFillObject
-
- } else {
- window.style_sheet = StyleSheet
- }
-
- /**
- * Color schemed styles for the @{LargeVideo} component.
- */
- ColorSchemeRegistry.register('LargeVideo', {
-
- /**
- * Large video container style.
- */
- largeVideo: {
- ...StyleSheet.absoluteFillObject,
- alignItems: 'stretch',
- backgroundColor: schemeColor('background'),
- flex: 1,
- justifyContent: 'center'
- }
- });
|