You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

styles.js 468B

123456789101112131415161718192021
  1. import { StyleSheet } from 'react-native';
  2. import { ColorPalette, createStyleSheet } from '../../base/styles';
  3. /**
  4. * Size for the Avatar.
  5. */
  6. export const AVATAR_SIZE = 200;
  7. export default createStyleSheet({
  8. /**
  9. * Large video container style.
  10. */
  11. largeVideo: {
  12. ...StyleSheet.absoluteFillObject,
  13. alignItems: 'stretch',
  14. backgroundColor: ColorPalette.appBackground,
  15. flex: 1,
  16. justifyContent: 'center'
  17. }
  18. });