diff --git a/src/DateTimePickerAndroid.android.js b/src/DateTimePickerAndroid.android.js index e340885b..e03ae2e2 100644 --- a/src/DateTimePickerAndroid.android.js +++ b/src/DateTimePickerAndroid.android.js @@ -33,11 +33,13 @@ function open(props: AndroidNativeProps) { is24Hour, minimumDate, maximumDate, - neutralButtonLabel, minuteInterval, timeZoneOffsetInMinutes, onChange, onError, + neutralButtonLabel, + positiveButtonLabel, + negativeButtonLabel, } = props; validateAndroidProps(props); invariant(originalValue, 'A date or time must be specified as `value` prop.'); @@ -53,9 +55,11 @@ function open(props: AndroidNativeProps) { is24Hour, minimumDate, maximumDate, - neutralButtonLabel, minuteInterval, timeZoneOffsetInMinutes, + neutralButtonLabel, + positiveButtonLabel, + negativeButtonLabel, }); switch (action) {