React Native:如何获取日历视图的日期

时间:2018-10-24 04:01:29

标签: react-native events calendar react-native-calendars

我正在使用React-native-calendar来显示现有预订的日期。我正在寻找如何在转到日历的上个月后获得该月的日期

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

我可以看到它们在顶部指定了一个日历对象,但是我如何以本地本机访问它。

1 个答案:

答案 0 :(得分:0)

您可以使用onMonthChange事件来获取日历的当前可见月份。

// Handler which gets executed when visible month changes in calendar. Default = undefined
  onMonthChange={(month) => {console.log('month changed', month)}}