diff --git a/README.md b/README.md
index 63874e9..0655ac1 100644
--- a/README.md
+++ b/README.md
@@ -71,7 +71,7 @@ export default () => {
| minuteInterval | The interval at which minutes can be selected. |
|
|
| mode | The date picker mode. {'datetime', 'date', 'time'} | 

| 

|
| locale | The locale for the date picker. Changes language, date order and am/pm preferences. Value needs to be a Locale ID. |
|
|
-| textColor | Changes the text color. ⚠ Colors other than black (#000000) or white (#ffffff) will replace the "Today" string with a date on iOS 13. |
|
|
+| textColor | Changes the text color. ⚠ Colors other than black (#000000) or white (#ffffff) will replace the "Today" string with a date on iOS 13 or higher. |
|
|
| timeZoneOffsetInMinutes | Timezone offset in minutes (default: device's timezone) |
## About
diff --git a/ios/RNDatePicker/DatePicker.m b/ios/RNDatePicker/DatePicker.m
index c8fef03..a37dc42 100644
--- a/ios/RNDatePicker/DatePicker.m
+++ b/ios/RNDatePicker/DatePicker.m
@@ -53,6 +53,9 @@
forControlEvents:UIControlEventValueChanged];
if(@available(iOS 13, *)) {
self.overrideUserInterfaceStyle = UIUserInterfaceStyleLight;
+ }
+ if(@available(iOS 14, *)) {
+ self.preferredDatePickerStyle = UIDatePickerStyleWheels;
}
_reactMinuteInterval = 1;
}