Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

styles.js 603B

1234567891011121314151617181920212223242526272829303132
  1. import { createStyleSheet } from '../../base/styles';
  2. /**
  3. * The style of the conference UI (component).
  4. * TODO Make styles more generic and reusable. Use ColorPalette for all colors.
  5. */
  6. export const styles = createStyleSheet({
  7. /**
  8. * Avatar style.
  9. */
  10. avatar: {
  11. flex: 1,
  12. width: '100%'
  13. },
  14. /**
  15. * Conference style.
  16. */
  17. conference: {
  18. alignSelf: 'stretch',
  19. backgroundColor: '#111111',
  20. flex: 1
  21. },
  22. /**
  23. * ParticipantView style
  24. */
  25. participantView: {
  26. alignItems: 'stretch',
  27. flex: 1
  28. }
  29. });