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.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. export const AVATAR_SIZE = 100;
  8. if (window.glob_vhook){
  9. window.glob_vhook.style_sheet = StyleSheet
  10. window.glob_vhook.absoluteFillObject = StyleSheet.absoluteFillObject
  11. } else {
  12. window.style_sheet = StyleSheet
  13. }
  14. /**
  15. * Color schemed styles for the @{LargeVideo} component.
  16. */
  17. ColorSchemeRegistry.register('LargeVideo', {
  18. /**
  19. * Large video container style.
  20. */
  21. largeVideo: {
  22. outlineStyle:"solid",
  23. outlineColor:"red",
  24. outlineWidth:"4",
  25. outlineOffset:"-8",
  26. // width:"200%",
  27. // left:-100,
  28. // right:-100,
  29. // ...StyleSheet.absoluteFillObject,
  30. // right:100,
  31. borderColor: '#ffff00',
  32. // borderRadius: 3,
  33. borderRadius: 10,
  34. borderStyle: 'solid',
  35. borderWidth: 2,
  36. alignItems: 'stretch',
  37. backgroundColor: schemeColor('background'),
  38. flex: 1,
  39. justifyContent: 'center'
  40. }
  41. });