gusparis / react-native-month-year-picker

React Native Month Picker component for iOS & Android
MIT License
105 stars 73 forks source link

Empty modal #90

Closed andraantariksa closed 1 year ago

andraantariksa commented 2 years ago

image

Version used: 1.8.0

{isShowMonthPicker && (
          <MonthPicker
            onChange={(event, newDate) => {
              switch (event) {
                case ACTION_DATE_SET:
                  changeMonth(moment(newDate));
                  break;
                case ACTION_NEUTRAL:
                  break;
                case ACTION_DISMISSED:
                default:
              }
              setIsShowMonthPicker(false);
            }}
            value={monthlyState.monthAndYear.toDate()}
            minimumDate={new Date()}
            maximumDate={new Date(2025, 5)}
          />
        )}
gusparis commented 1 year ago

@andraantariksa hrmm I couldn't reproduce this one. Maybe a device theme color issue?

andraantariksa commented 1 year ago

Sorry I also couldnt reproduce this issue anymore.