/** * Sample React Native App * https://github.com/facebook/react-native * * @format * @flow */ import React, { Component } from "react"; import { StyleSheet, Text, View, Image, ScrollView, StatusBar, FlatList } from "react-native"; import Orientation from "react-native-orientation"; import CusVideo from "./CusVideo"; // 获取屏幕宽高 import { Dimensions } from 'react-native' const { height, width } = Dimensions.get('window'); export default class VideoExplain extends Component { static propTypes = { // uri: PropTypes.string, // title: PropTypes.string, // details: PropTypes.string, }; state = { isFull: false, video_height: 210, statusbar_hidden: false, videoStyle: { width: "100%" } }; render() { return (