/** * Sample React Native App * https://github.com/facebook/react-native * @flow */ import React, { Component } from "react"; import { StyleSheet, Text, View, Dimensions, TouchableOpacity } from "react-native"; import Video from "react-native-video"; const { height, width } = Dimensions.get("screen"); type Props = {}; export default class App extends Component { render() { return ( ); } } const styles = StyleSheet.create({ container: { flex: 1, justifyContent: "center", alignItems: "center", backgroundColor: "#F5FCFF" }, button: { position: 'absolute', top: 50, right: 16, padding: 10, backgroundColor: '#9B2FAE', borderRadius: 8 }, welcome: { fontSize: 20, textAlign: "center", margin: 10 } });