import React, { Component } from "react" import { StyleSheet, Text, View } from "react-native" import { unitWidth, unitHeight } from "../../utils/AdapterUtil"; import AntDesign from "react-native-vector-icons/AntDesign" export default class Info extends Component { render() { // let { text } = this.props return ( 证明材料拍摄技巧 1、请保证拍摄图片清晰可辨。 2、证书内页的印章完整清晰,请勿遮挡。 ) } } const styles = StyleSheet.create({ infoArea: { width: "100%", marginTop:unitHeight * 40 }, infoTitle: { flexDirection: "row", paddingLeft: unitWidth * 24, alignItems: "center" }, infoList: { marginTop: unitHeight * 10, marginLeft: unitWidth * 64 } })