react-native-calendar-strip
react-native-calendar-strip copied to clipboard
iOS - When setting scrollable to true and a max date, sometimes dates are not tappable
When I set scrollable to true and a max date, dates > selected date is not tappable
<CalendarStrip
scrollable
style={styles.calendar}
maxDate={moment().add(14, 'days')}
minDate={moment().subtract(28, 'days')}
useIsoWeekday={false}
selectedDate={selectedDate}
startingDate={selectedDate.clone().subtract((numberOfDays - 1) / 2, 'days');}
onDateSelected={this.onDateSelected}
onWeekChanged={this.onWeekChanged}
/>