-
Notifications
You must be signed in to change notification settings - Fork 396
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DatePicker Alignment in iOS 14 #488
Labels
Comments
Hi @gopikasireddy202 , sorry but we don't provide support for older versions of the picker. Your best bet is updating to the latest and check if the issue is fixed there |
Hi mmazzarolo, |
I am using latest version still have same issue |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi Team,
I am using the react-native-modal-datetime-picker": "^6.0.0 for react-native : 0.59.0,react:16.6.3,Xcode:12.0.1,iOS :14.
The DatePicker show current date with no spinner for this i am added native code in AppDelegate didFinishLaunchingWithOptions
if (@available(iOS 14, *)) {
UIDatePicker *picker = [UIDatePicker appearance];
picker.preferredDatePickerStyle = UIDatePickerStyleWheels;
}
After this native code DatePicker show all dates and spinner at left side in iPhone and iPad.
Can you please resolve this datepicker at center in both iPhone and iPad.
The text was updated successfully, but these errors were encountered: