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