CourseDetails.js 804 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /**
  2. * Sample React Native App
  3. * https://github.com/facebook/react-native
  4. *
  5. * @format
  6. * @flow
  7. */
  8. import React, { Component } from "react";
  9. import {
  10. StyleSheet,
  11. Text,
  12. View,
  13. Image,
  14. ScrollView,
  15. FlatList
  16. } from "react-native";
  17. import VideoExplain from './components/VideoExplain'
  18. export default class CourseDetails extends Component {
  19. render() {
  20. return (
  21. <ScrollView style={{backgroundColor: '#F0F1F5'}}>
  22. <VideoExplain
  23. title={'同步辅导语文一年级下册'}
  24. details={'汉字,作为象形文字,是中华文化的载体,本课程从甲骨文开始,让孩子爱上识字爱上文字的美。了解文字…'}
  25. uri={'http://chimee.org/vod/1.mp4'}
  26. />
  27. </ScrollView>
  28. );
  29. }
  30. }
  31. const styles = StyleSheet.create({
  32. });