Skip to content

Instantly share code, notes, and snippets.

@eyalcohen4
Last active December 16, 2017 12:27
Show Gist options
  • Save eyalcohen4/107e03c001c68f99aee73866c4acceb3 to your computer and use it in GitHub Desktop.
Save eyalcohen4/107e03c001c68f99aee73866c4acceb3 to your computer and use it in GitHub Desktop.
export default class App extends React.Component {
render() {
const { width } = Dimensions.get('window');
return (
<View style={styles.container}>
<Text style={{ textAlign: 'center' }}> React Native Video </Text>
<Video
source={{ uri: 'http://d23dyxeqlo5psv.cloudfront.net/big_buck_bunny.mp4' }}
shouldPlay
resizeMode="cover"
style={{ width, height: 300 }}
/>
</View>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment