No Description

CAVideoTranslationPage.js 1016B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /**
  2. * Created by Sean on 2018/5/9.
  3. */
  4. import {
  5. View,
  6. Text,
  7. StyleSheet,
  8. TouchableOpacity,
  9. TouchableWithoutFeedback,
  10. ScrollView,
  11. SectionList,
  12. Image,
  13. Animated
  14. } from 'react-native'
  15. import React, {Component} from 'react'
  16. import PropTypes from 'prop-types';
  17. import {NavigationBarHeight, TabBarHeight, ScreenDimensions} from '../../../utils/DimensionsTools'
  18. export default class CAVideoTranslationPage extends Component {
  19. constructor(props) {
  20. super(props);
  21. }
  22. render() {
  23. return(
  24. <View style={styles.pageContainer}>
  25. <Text style={styles.questionTitle}>
  26. 译文
  27. </Text>
  28. </View>
  29. );
  30. }
  31. }
  32. const styles = StyleSheet.create({
  33. pageContainer: {
  34. width: ScreenDimensions.width,
  35. height: ScreenDimensions.height - NavigationBarHeight.height - 78 - 78 - 45 - 10,
  36. },
  37. questionTitle: {
  38. fontSize: 18,
  39. color: "#666666",
  40. marginHorizontal: 12
  41. }
  42. });