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 238B

123456789101112131415
  1. import { StyleSheet } from 'react-native';
  2. /**
  3. * Make video element fill its container.
  4. */
  5. const video = {
  6. flex: 1
  7. };
  8. /**
  9. * Native-specific styles for media components.
  10. */
  11. export const styles = StyleSheet.create({
  12. video
  13. });