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.native.js 1.1KB

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