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 552B

12345678910111213141516171819202122232425
  1. import { StyleSheet } from 'react-native';
  2. import { ColorSchemeRegistry, schemeColor } from '../../base/color-scheme';
  3. /**
  4. * Size for the Avatar.
  5. */
  6. export const AVATAR_SIZE = 200;
  7. /**
  8. * Color schemed styles for the @{LargeVideo} component.
  9. */
  10. ColorSchemeRegistry.register('LargeVideo', {
  11. /**
  12. * Large video container style.
  13. */
  14. largeVideo: {
  15. ...StyleSheet.absoluteFillObject,
  16. alignItems: 'stretch',
  17. backgroundColor: schemeColor('background'),
  18. flex: 1,
  19. justifyContent: 'center'
  20. }
  21. });