UNPKG

react-native-select-input-ios

Version:

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

16 lines (14 loc) 381 B
import PropTypes from 'prop-types' import { Text } from 'react-native' export default { enabled: PropTypes.bool, labelStyle: PropTypes.oneOfType([ Text.propTypes.style, PropTypes.arrayOf(Text.propTypes.style) ]), onEndEditing: PropTypes.func, onSubmitEditing: PropTypes.func, onValueChange: PropTypes.func, options: PropTypes.array, value: PropTypes.any }