- Dark mode support (#513)
- donePressed on onClose callback (#319)
- testID available on each item (#498)
- Fixed reliance on now-private dep (#513)
- Moved dep to @react-native-picker/picker
- Fix
Cannot update component inside function
error (#346)
- Add
fixAndroidTouchableBug
prop (#354)
- Locked @react-native-community/picker to 1.6.0 to fix Expo issues
- Add togglePicker method to Picker component typescript definition (#360)
- Fix wrong PickerProps import in index.d.ts (#352)
- Fixed inputWeb to be a TextStyle, not ViewStyle (#365)
- Now using @react-native-community/picker under the hood (#340). For that reason, this library now requires React Native 0.60 or above. If using Expo, SDK38 or above is required.
- Replaced item prop
displayValue
withinputLabel
(#336)
- Added web support (#316)
- Deprecated prop
hideDoneBar
has been removed - Deprecated prop
placeholderTextColor
has been removed - Type definitions rewritten (#305)
- Remove deprecated ColorPropType
- Updated touchables to all be all TouchableOpacity (with override props available)
- Done text now animates on depress like native select dialog (#215)
- Update iOS colors (#281)
- If an item has the
displayValue
property set to true, the TextInput shows the itemvalue
instead of the itemlabel
(#279)
- Opened up
onOpen
prop to now support Android when in headless oruseNativeAndroidPickerStyle={false}
mode
- Fix for
onDonePress
regression (#236) - "Done" Text element now set to
allowFontScaling={false}
(#247)
- Split off styles into separate file
- Update typescript definition file to add
InputAccessoryView
- Fix Done button on iPad (#209)
- Added a prop called
InputAccessoryView
to allow a custom component to replace the InputAccessoryView on iOS. View the snack to see examples on how this can be customized. As a result of this change, thehideDoneBar
prop has been deprecated. - iOS modal window now correctly resizes on orientation change
defaultStyles
are now exported
- Supports an empty
items
array (#161)
- Replaced setTimeouts with callbacks for arrow buttons (#177)
- Opened up
placeholder
on style object for modification (#119) (#155). TheplaceholderTextColor
prop is now deprecated, as this style object allows for additional properties.
- In order to make this component less opinionated, especially in terms of style, we have removed the default dropdown arrow icon in leiu of a more flexible
Icon
prop which will render a component - allowing you to insert your own css, image, svg, or icon from any library of your choosing. Due to this change, thenoIcon
prop has been removed. To replicate the arrow from previous versions, see the last example / see the styling section in the README for more details. - In Android, we no longer insert a psuedo-underline by default - as the default input style in React Native sets the underline color to transparent since this PR - which landed in 0.56. You can add this back in fairly easily, either by using the
textInputProps
prop or by adding a border on one of the wrapping container elements - all depending on your personal usage of the component. - Some of the default styles of the iOS "Done bar" have been tweaked and streamlined
- if using useNativeAndroidPickerStyle={false}, the outer container is now only
headlessAndroidContainer
withoutviewContainer
wrapping it
- Fix headless Android onValueChange trigger on render (#141)
- Fix TypeError (#139)
- Fixes Android headless mode trigger area (#122)
- Fixes unnecessary renders (#129)
- Fixes keyboard not dismissing on iOS
- Added
onOpen
andonClose
callbacks (iOS only)
- Opened up headlessAndroidPicker and chevronContainer on style object for modification
- Added
useNativeAndroidPickerStyle
prop. See README for more details.
- Fixed Android headless mode showing selected value outside of View (#83)
- Fixed
TouchableWithoutFeedback
warning
styles.placeholderColor
has been replaced withplaceholderTextColor
mode
prop is now accessible viapickerProps
animationType
prop is now accessible viamodalProps
(see warning in README)
- Default placeholder now includes default
color
of #9EA0A4 pickerProps
,modalProps
, andtextInputProps
have been added (see README)