/** * Sample React Native App * https://github.com/facebook/react-native * * @format * @flow */ import React, { Component } from "react"; import { StyleSheet, Text, View, Image, ScrollView, FlatList } from "react-native"; import CusVideo from './CusVideo' export default class VideoExplain extends Component { // static propTypes = { // uri: PropTypes.string, // title: PropTypes.string, // details: PropTypes.string, // }; render() { return ( {this.props.title} 课程介绍: 更多 > {this.props.details} ); } } const styles = StyleSheet.create({ videoExplain: { width: '100%', backgroundColor: 'white', paddingLeft: 20, paddingRight: 20, paddingTop: 13, paddingBottom: 13 }, title: { width: '100%', display: 'flex', flexDirection: 'row', justifyContent: 'space-between', alignItems: 'center' }, font: { fontSize: 18, color: 'black', fontWeight: 'bold', }, clor: { fontSize: 14, color: 'black', }, icon: { display: 'flex', flexDirection: 'row', }, iconSize: { width: 20, height: 20, backgroundColor: 'red', marginLeft: 10 }, tops: { marginTop: 18, } });