react native text input
npm install react-native-pure-inputpure text input, without any style.
``shell`
npm install --save react-native-pure-input
`javascript
import Input from 'react-native-pure-input'
class Example extends Component {
render() {
return (
style={{borderTopWidth: 1, borderTopColor: '#CCC'}}
inputStyle={{backgroundColor: '#FFF', fontSize: 14}}
inputAlign="left: input + icon or right: icon + input"
>
)
}
}
``