IDCodeEditView.js
749 Bytes
import React, {Component} from 'react';
import {
View,
Text,
TextInput,
Image,
} from 'react-native';
export default class IDCodeEditView extends Component {
constructor(props) {
super(props);
this.state = {
}
}
render() {
return (
<View style={{width: '100%', backgroundColor: 'white', paddingHorizontal: 5, paddingVertical: 10}}>
<Text style={{fontSize: 16, color: 'rgba(0, 0, 0, 1)', marginBottom: 5}}>身份证</Text>
<TextInput
style={{backgroundColor: 'white'}}
placeholderTextColor={'#999'}
placeholder={'请输入'}
/>
</View>
);
}
}