Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

styles.js 591B

12345678910111213141516171819202122232425262728
  1. import { StyleSheet } from 'react-native';
  2. import { ColorPalette } from '../../../styles';
  3. /**
  4. * The styles of the feature base/media.
  5. */
  6. export default StyleSheet.create({
  7. /**
  8. * Make {@code Video} fill its container.
  9. */
  10. video: {
  11. flex: 1
  12. },
  13. /**
  14. * Black cover for the video, which will be animated by reducing its opacity
  15. * and create a fade-in effect.
  16. */
  17. videoCover: {
  18. backgroundColor: ColorPalette.black,
  19. height: '100%',
  20. left: 0,
  21. position: 'absolute',
  22. top: 0,
  23. width: '100%'
  24. }
  25. });