| 10 | import { PickerProps } from '@react-native-picker/picker/typings/Picker'; |
| 11 | |
| 12 | export interface Item { |
| 13 | label: string; |
| 14 | value: any; |
| 15 | key?: string | number; |
| 16 | color?: string; |
| 17 | testID?: string; |
| 18 | /** |
| 19 | * Used when you want a different label displayed |
| 20 | * on the input than what is displayed on the Picker |
| 21 | * |
| 22 | * If falsy, label is used |
| 23 | */ |
| 24 | inputLabel?: string; |
| 25 | } |
| 26 | |
| 27 | export interface PickerStyle { |
| 28 | chevron?: StyleProp<ViewStyle>; |
nothing calls this directly
no outgoing calls
no test coverage detected