import React from "react" import { StyleSheet, Text, View } from "react-native" import { unitWidth, unitHeight } from "../utils/AdapterUtil"; import RNPickerSelect from 'react-native-picker-select'; import AntDesign from "react-native-vector-icons/AntDesign" import MyButtom from '../component/MyButton' export default class GirlFrienfTerm extends React.Component { render() { return ( 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' }, ]} > 居住地 console.log(value)} items={[ { label: 'Football', value: 'football' }, { label: 'Baseball', value: 'baseball' }, { label: 'Hockey', value: 'hockey' }, ]} > 年收入 ) } } const styles = StyleSheet.create({ container: { flex: 1 }, 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 }, bottomBtn: { width: "100%", marginTop: unitHeight * 243, height: unitHeight * 84, justifyContent: 'center', alignItems: 'center' } })