- 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)