我有个问题。对于我的react-native项目,我使用react-native-calendars,我需要能够计算日历中选定的天数。我阅读了这个库的文档,但我没有找到解决方案。有人知道怎么做吗?
发布于 2020-09-15 16:59:55
应该有一个您可以实现的onDayPress
<CalendarList
onDayPress={(day) => {console.log('push day to array')}} />https://stackoverflow.com/questions/62903310
复制相似问题