File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ export type DatePickerInputProps = {
2525 onChangeText ?: ( text : string | undefined ) => void
2626 inputEnabled ?: boolean
2727 disableStatusBarPadding ?: boolean
28+ animationType ?: 'slide' | 'fade' | 'none'
2829} & Omit <
2930 React . ComponentProps < typeof TextInput > ,
3031 'value' | 'onChange' | 'onChangeText' | 'inputMode'
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ function DatePickerInput(
1212 {
1313 withModal = true ,
1414 calendarIcon = 'calendar' ,
15+ animationType = 'slide' ,
1516 ...rest
1617 } : DatePickerInputProps ,
1718 ref : any
@@ -76,6 +77,7 @@ function DatePickerInput(
7677 endYear = { endYear ?? 2200 }
7778 inputEnabled = { inputEnabled }
7879 disableStatusBarPadding = { disableStatusBarPadding ?? false }
80+ animationType = { animationType }
7981 />
8082 ) : null
8183 }
You can’t perform that action at this time.
0 commit comments