采用React Native 开发的Input组件
npm install react-native-inputnpm i react-native-input --save
通过引用import Input from 'react-native-input'来使用
````
React.createClass({
render() {
return (
maxLength={11}
onChange={this.props.onChange}
placeholder={this.props.placeholder}
onFocus={this.props.onFocus}
onBlur={this.props.onBlur}
onGetContainerIcon={this._getPhoneNumIcon()}/>
)
},
_getPhoneNumIcon(){
return
},
});