import React, { Component } from "react" import { StyleSheet, Text, View,Image } from "react-native" import { unitWidth, unitHeight } from "../utils/AdapterUtil"; import AntDesign from "react-native-vector-icons/AntDesign" export default class WelcomePage extends Component { render() { return ( 您目前的信用等级V1 V1 V2 V3 V4 V5 信用等级越高,代表您的综合竞争力越高哦 实名认证 工作认证 学历认证 房产认证 车辆认证 ) } } const styles = StyleSheet.create({ container: { flex: 1, alignItems: "center" }, starArea: { width: "100%", height: unitHeight * 287, backgroundColor: "#fff", alignItems: "center", paddingTop: unitHeight * 31, marginBottom: unitHeight * 20 }, starList: { width: "100%", flexDirection: "row", justifyContent: "space-between", paddingLeft: unitWidth * 64, paddingRight: unitWidth * 64, marginTop: unitHeight * 50, marginBottom: unitHeight * 30 }, starItem: { color: "#ccc" }, bottomList: { width: "100%", backgroundColor: "#fff", flexDirection: "row", justifyContent:"space-between", paddingLeft:unitWidth * 40, paddingRight:unitWidth * 40 }, bottomIconItem:{ width:unitWidth * 110, height:unitHeight * 157, justifyContent:"center", alignItems:"center" } })