2018-05-23 12:30:22 +00:00
|
|
|
import { StyleSheet } from 'react-native';
|
|
|
|
|
2016-10-05 14:36:59 +00:00
|
|
|
import { ColorPalette, createStyleSheet } from '../../base/styles';
|
|
|
|
|
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
|
|
|
|
2018-02-05 10:57:40 +00:00
|
|
|
export default createStyleSheet({
|
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',
|
|
|
|
backgroundColor: ColorPalette.appBackground,
|
|
|
|
flex: 1,
|
2018-05-23 12:30:22 +00:00
|
|
|
justifyContent: 'center'
|
2016-10-05 14:36:59 +00:00
|
|
|
}
|
|
|
|
});
|