Skip to content

Instantly share code, notes, and snippets.

@eyalcohen4
Last active December 16, 2017 12:53
Show Gist options
  • Save eyalcohen4/5b2c414d2d433625a104dfdf4c3cb8b5 to your computer and use it in GitHub Desktop.
Save eyalcohen4/5b2c414d2d433625a104dfdf4c3cb8b5 to your computer and use it in GitHub Desktop.
render() {
const { width } = Dimensions.get('window');
return (
<View style={styles.container}>
<View>
<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 style={styles.controlBar}></View>
</View>
</View>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment