import React, { Component } from "react" import { StyleSheet, View, Text, Image } from "react-native" import { unitWidth, unitHeight } from "../utils/AdapterUtil"; import RNPickerSelect from 'react-native-picker-select'; import AntDesign from "react-native-vector-icons/AntDesign" export default class MyInfo extends Component { render() { return ( 完成10项资料后,你才会被系统推荐给他人 console.log(value)} items={[ { label: 'Football', value: 'football' }, { label: 'Baseball', value: 'baseball' }, { label: 'Hockey', value: 'hockey' }, ]} > 头像 console.log(value)} items={[ { label: 'Football', value: 'football' }, { label: 'Baseball', value: 'baseball' }, { label: 'Hockey', value: 'hockey' }, ]} > 姓名 张晓明 console.log(value)} items={[ { label: 'Football', value: 'football' }, { label: 'Baseball', value: 'baseball' }, { label: 'Hockey', value: 'hockey' }, ]} > 性别 console.log(value)} items={[ { label: 'Football', value: 'football' }, { label: 'Baseball', value: 'baseball' }, { label: 'Hockey', value: 'hockey' }, ]} > 出生日期 1990-01-01 console.log(value)} items={[ { label: 'Football', value: 'football' }, { label: 'Baseball', value: 'baseball' }, { label: 'Hockey', value: 'hockey' }, ]} > 居住地 山东省烟台市莱山区 console.log(value)} items={[ { label: 'Football', value: 'football' }, { label: 'Baseball', value: 'baseball' }, { label: 'Hockey', value: 'hockey' }, ]} > 身高 170cm console.log(value)} items={[ { label: 'Football', value: 'football' }, { label: 'Baseball', value: 'baseball' }, { label: 'Hockey', value: 'hockey' }, ]} > 体重 55kg console.log(value)} items={[ { label: 'Football', value: 'football' }, { label: 'Baseball', value: 'baseball' }, { label: 'Hockey', value: 'hockey' }, ]} > 行业 互联网行业 console.log(value)} items={[ { label: 'Football', value: 'football' }, { label: 'Baseball', value: 'baseball' }, { label: 'Hockey', value: 'hockey' }, ]} > 年收入 15-20w console.log(value)} items={[ { label: 'Football', value: 'football' }, { label: 'Baseball', value: 'baseball' }, { label: 'Hockey', value: 'hockey' }, ]} > 兴趣爱好 it ) } } const styles = StyleSheet.create({ container: { flex: 1, alignItems: "center" }, titleTip: { width: "100%", height: unitHeight * 84, backgroundColor: "#FCF2F6", flexDirection:"row", alignItems:"center", paddingLeft:unitWidth * 24, }, formArea: { width: "100%" }, formItem: { width: "100%", height: unitHeight * 97, backgroundColor: "#fff", marginBottom: unitHeight * 6, }, itemArea: { width: "100%", height: "100%", flexDirection: "row", justifyContent: "space-between", alignItems: "center", paddingLeft: unitWidth * 23, paddingRight: unitWidth * 24, borderBottomColor: "#F9F9F9", borderBottomWidth: 1 }, itemRight: { flexDirection: "row", alignItems: "center" }, userIcon: { width: unitWidth * 66, height: unitHeight * 66 } })