UNPKG

react-native-select-input-ios

Version:

A React Native SelectInput for iOS and Android, which uses a keyboard with a Picker component

9 lines (6 loc) 237 B
import { Platform } from 'react-native' const SelectInput = Platform.select({ ios: () => require('./components/SelectInput.ios'), android: () => require('./components/SelectInput.android'), })(); export default SelectInput.default