We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d39ebc commit ae6c54cCopy full SHA for ae6c54c
src/Date/DatePickerInputWithoutModal.tsx
@@ -92,7 +92,9 @@ function DatePickerInputWithoutModal(
92
disabled={disabled}
93
onChangeText={onDateInputChangeText}
94
onChange={(e) => onChangeText && onChangeText(e.nativeEvent.text)}
95
- keyboardAppearance={rest.keyboardAppearance ?? (theme.dark ? 'dark' : 'default')}
+ keyboardAppearance={
96
+ rest.keyboardAppearance ?? (theme.dark ? 'dark' : 'default')
97
+ }
98
error={(!!error && !hideValidationErrors) || !!hasError}
99
style={[styles.input, style]}
100
inputButton={inputButton}
0 commit comments