Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

styles.js 388B

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