@ornikar/kitt-universal 16.1.4 → 16.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -8394,7 +8394,8 @@ function Picker({
8394
8394
  itemToString,
8395
8395
  checkSelectedItem,
8396
8396
  onChange,
8397
- onClose
8397
+ onClose,
8398
+ shouldDisplayNativePickerOnIOS = true
8398
8399
  }) {
8399
8400
  const [state, dispatch] = React.useReducer(nativePickerReducer, {
8400
8401
  isOpen: isInitialOpen,
@@ -8457,7 +8458,7 @@ function Picker({
8457
8458
  variant: "bold",
8458
8459
  children: title
8459
8460
  })
8460
- }), reactNative.Platform.OS === 'ios' ? /*#__PURE__*/jsxRuntime.jsx(picker$1.Picker, {
8461
+ }), reactNative.Platform.OS === 'ios' && shouldDisplayNativePickerOnIOS ? /*#__PURE__*/jsxRuntime.jsx(picker$1.Picker, {
8461
8462
  testID: testID,
8462
8463
  selectedValue: state.internalValue,
8463
8464
  itemStyle: iosItemStyle,