UserAgree.js 939 B

123456789101112131415161718192021222324
  1. import React, { Component } from "react"
  2. import { StyleSheet, Text, View } from "react-native"
  3. import { unitWidth } from "../utils/AdapterUtil";
  4. export default class UserAgree extends Component {
  5. render() {
  6. return (
  7. <View style={styles.container}>
  8. <Text style={styles.text}>用户协议用户协议用户协议用户协议用户协议用户协议用户协议用户协议用户协议用户协议用户协议用户协议用户协议用户协议用户协议用户协议用户协议用户协议用户协议用户协议用户协议用户协议用户协议用户协议用户协议用户协议用户协议用户协议用户协议用户协议用户协议用户协议用户协议</Text>
  9. </View>
  10. )
  11. }
  12. }
  13. const styles = StyleSheet.create({
  14. container: {
  15. flex: 1,
  16. alignItems: "center"
  17. },
  18. text:{
  19. fontSize:unitWidth * 28,
  20. color:"#333333"
  21. }
  22. })