maggialejandro/react-native-calendario

Unable to set starting month?

Closed this issue · 1 comments

The following code won't scroll back past Sept. (ios simulator)

return (
<Calendar
minDate={new Date(2022, 1, 1)}
startDate={new Date(2022, 9, 1)}
theme={{
activeDayColor: {
color: 'white',
backgroundColor: 'blue',
},
activeDayColor: {},
monthTitleTextStyle: {
color: 'blue',
fontWeight: '300',
fontSize: 23,
},
}}
startingMonth={new Date(2022, 1, 1)}
/>
);

startingMonth is a string with this format '2019-11-01'