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 @@ -26,6 +26,7 @@ export type DatePickerInputProps = {
2626 inputEnabled ?: boolean
2727 disableStatusBarPadding ?: boolean
2828 animationType ?: 'slide' | 'fade' | 'none'
29+ presentationStyle ?: 'fullScreen' | 'pageSheet' | 'formSheet' | 'overFullScreen'
2930} & Omit <
3031 React . ComponentProps < typeof TextInput > ,
3132 'value' | 'onChange' | 'onChangeText' | 'inputMode'
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ function DatePickerInput(
1212 withModal = true ,
1313 calendarIcon = 'calendar' ,
1414 animationType = 'slide' ,
15+ presentationStyle = "fullScreen" ,
1516 ...rest
1617 } : DatePickerInputProps ,
1718 ref : any
@@ -78,6 +79,7 @@ function DatePickerInput(
7879 inputEnabled = { inputEnabled }
7980 disableStatusBarPadding = { disableStatusBarPadding ?? false }
8081 animationType = { animationType }
82+ presentationStyle = { presentationStyle }
8183 />
8284 ) : null
8385 }
You can’t perform that action at this time.
0 commit comments