123456789101112131415161718192021222324 |
- import React, { Component } from "react"
- import { StyleSheet, Text, View } from "react-native"
- import { unitWidth } from "../utils/AdapterUtil";
- export default class UserAgree extends Component {
- render() {
- return (
- <View style={styles.container}>
- <Text style={styles.text}>用户协议用户协议用户协议用户协议用户协议用户协议用户协议用户协议用户协议用户协议用户协议用户协议用户协议用户协议用户协议用户协议用户协议用户协议用户协议用户协议用户协议用户协议用户协议用户协议用户协议用户协议用户协议用户协议用户协议用户协议用户协议用户协议用户协议</Text>
- </View>
- )
- }
- }
- const styles = StyleSheet.create({
- container: {
- flex: 1,
- alignItems: "center"
- },
- text:{
- fontSize:unitWidth * 28,
- color:"#333333"
- }
- })
|