2018-05-23 14:30:22 +02:00
|
|
|
import { StyleSheet } from 'react-native';
|
|
|
|
|
|
2019-01-22 11:35:28 +01:00
|
|
|
import { ColorSchemeRegistry, schemeColor } from '../../base/color-scheme';
|
2016-10-05 09:36:59 -05:00
|
|
|
|
2018-02-05 11:57:40 +01:00
|
|
|
/**
|
|
|
|
|
* Size for the Avatar.
|
|
|
|
|
*/
|
|
|
|
|
export const AVATAR_SIZE = 200;
|
2016-10-05 09:36:59 -05:00
|
|
|
|
2019-01-22 11:35:28 +01:00
|
|
|
/**
|
|
|
|
|
* Color schemed styles for the @{LargeVideo} component.
|
|
|
|
|
*/
|
|
|
|
|
ColorSchemeRegistry.register('LargeVideo', {
|
2018-09-11 12:16:01 +02:00
|
|
|
|
2016-10-05 09:36:59 -05:00
|
|
|
/**
|
|
|
|
|
* Large video container style.
|
|
|
|
|
*/
|
|
|
|
|
largeVideo: {
|
2018-05-23 14:30:22 +02:00
|
|
|
...StyleSheet.absoluteFillObject,
|
2016-10-05 09:36:59 -05:00
|
|
|
alignItems: 'stretch',
|
2019-01-22 11:35:28 +01:00
|
|
|
backgroundColor: schemeColor('background'),
|
2016-10-05 09:36:59 -05:00
|
|
|
flex: 1,
|
2018-05-23 14:30:22 +02:00
|
|
|
justifyContent: 'center'
|
2016-10-05 09:36:59 -05:00
|
|
|
}
|
|
|
|
|
});
|