我正在使用React-native-calendar来显示现有预订的日期。我正在寻找如何在转到日历的上个月后获得该月的日期
https://github.com/wix/react-native-calendars
我可以看到它们在顶部指定了一个日历对象,但是我如何以本地本机访问它。
答案 0 :(得分:0)
您可以使用onMonthChange
事件来获取日历的当前可见月份。
// Handler which gets executed when visible month changes in calendar. Default = undefined
onMonthChange={(month) => {console.log('month changed', month)}}