您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

styles.native.js 1.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. import { ColorPalette, createStyleSheet } from '../../styles';
  2. export default createStyleSheet({
  3. // XXX The names bellow were preserved for the purposes of compatibility
  4. // with the existing CSS class names on Web.
  5. /**
  6. * The style of {@code CalleeInfo}.
  7. */
  8. ringing: {
  9. alignItems: 'center',
  10. backgroundColor: ColorPalette.black,
  11. bottom: 0,
  12. flex: 0,
  13. flexDirection: 'column',
  14. justifyContent: 'center',
  15. left: 0,
  16. opacity: 0.8,
  17. position: 'absolute',
  18. right: 0,
  19. top: 0
  20. },
  21. 'ringing__avatar': {
  22. borderRadius: 50,
  23. flex: 0,
  24. height: 100,
  25. width: 100
  26. },
  27. 'ringing__caller-info': {
  28. alignItems: 'center',
  29. flex: 0,
  30. flexDirection: 'row',
  31. justifyContent: 'center'
  32. },
  33. 'ringing__content': {
  34. alignItems: 'center',
  35. flex: 0,
  36. flexDirection: 'column',
  37. justifyContent: 'center'
  38. },
  39. /**
  40. * The style of {@code Text} within {@code CalleeInfo}.
  41. */
  42. 'ringing__text': {
  43. color: ColorPalette.white
  44. }
  45. });