Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

styles.js 393B

12345678910111213141516171819
  1. import {
  2. ColorPalette,
  3. createStyleSheet,
  4. fixAndroidViewClipping
  5. } from '../../base/styles';
  6. /**
  7. * The style of the conference UI (component).
  8. */
  9. export const styles = createStyleSheet({
  10. /**
  11. * Conference style.
  12. */
  13. conference: fixAndroidViewClipping({
  14. alignSelf: 'stretch',
  15. backgroundColor: ColorPalette.appBackground,
  16. flex: 1
  17. })
  18. });