A React Native SelectInput for iOS and Android, which uses a keyboard with a Picker component
npm install react-native-select-input-ios    
A React Native SelectInput for iOS (+Android) which shows the picker as a keyboard.

Installation can be done through npm or yarn:
``bash`
npm install react-native-select-input-ios --saveor
yarn add react-native-select-input-ios$3
Import the SelectInput and wrap you content inside of it.
`js
import React from 'react'
import { View } from 'react-native'
import SelectInput from 'react-native-select-input-ios'
class Component extends React.Component {
render() {
const options = [{ value: 0, label: '0' }]
return (
)
}
}
`
Check out the properties wiki page to see the list of available props to pass. Also check out the methods wiki page to see the list of callable methods available.
There are some breaking changes introduced in version 2.0, see this migration guide to fix this issues!
Check out the repository and run the example project with the following commands:
`bashclone and open example project
git clone https://github.com/markuswind/react-native-select-input-ios
cd example