0

I am using React-native-calendar to show the date of the existing booking. I am looking how to get the date of the month after going to previous month of the calendar

https://github.com/wix/react-native-calendars

i can see they specify at the top a calendar object but how i can access it, in react native.

bennygenel
  • 23,896
  • 6
  • 65
  • 78
LittleFunny
  • 8,155
  • 15
  • 87
  • 198

1 Answers1

0

You can use onMonthChange event to get the current visible month of the calendar.

// Handler which gets executed when visible month changes in calendar. Default = undefined
  onMonthChange={(month) => {console.log('month changed', month)}}
bennygenel
  • 23,896
  • 6
  • 65
  • 78