You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: android/expoview/src/main/java/versioned/host/exp/exponent/modules/api/components/datetimepicker/Common.java
+78-15
Original file line number
Diff line number
Diff line change
@@ -18,8 +18,15 @@
18
18
importandroidx.fragment.app.FragmentManager;
19
19
20
20
importcom.facebook.react.bridge.Promise;
21
+
importcom.facebook.react.bridge.ReadableMap;
22
+
importcom.facebook.react.util.RNLog;
21
23
24
+
importjava.util.Arrays;
25
+
importjava.util.Calendar;
26
+
importjava.util.HashSet;
22
27
importjava.util.Locale;
28
+
importjava.util.SimpleTimeZone;
29
+
importjava.util.TimeZone;
23
30
24
31
publicclassCommon {
25
32
@@ -63,21 +70,18 @@ public static int getDefaultDialogButtonTextColor(@NonNull Context activity) {
RNLog.w(null, "'" + timeZoneName + "' does not exist in TimeZone.getAvailableIDs(). Falling back to TimeZone.getDefault()=" + TimeZone.getDefault().getID());
Copy file name to clipboardexpand all lines: android/expoview/src/main/java/versioned/host/exp/exponent/modules/api/components/datetimepicker/DatePickerModule.java
Copy file name to clipboardexpand all lines: android/expoview/src/main/java/versioned/host/exp/exponent/modules/api/components/datetimepicker/KeepDateInRangeListener.java
Copy file name to clipboardexpand all lines: android/expoview/src/main/java/versioned/host/exp/exponent/modules/api/components/datetimepicker/RNConstants.java
+2
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,8 @@ public final class RNConstants {
Copy file name to clipboardexpand all lines: android/expoview/src/main/java/versioned/host/exp/exponent/modules/api/components/datetimepicker/RNDate.java
+2-10
Original file line number
Diff line number
Diff line change
@@ -11,19 +11,11 @@ public RNDate(Bundle args) {
11
11
now = Calendar.getInstance();
12
12
13
13
if (args != null && args.containsKey(RNConstants.ARG_VALUE)) {
0 commit comments