React Native 网格日历,看起来像 Google 日历的月视图

React Native grid calendar that looks like Google Calendar's Month view

我想将网格日历添加到我的 React Native 应用程序,它应该看起来像 Google 日历中的月视图(左图)。我搜索了这些库,发现 React Native Calendar but as far as I can see, it can only give me the type of calendar that looks like the one on the right image. Is there any trick for React Native Calendar 可以制作网格日历,或者是否有任何支持制作网格日历的 React Native 库?

对于任何想知道同样事情的人,您可以使用 FlatList 实现网格日历,这在加载日期方面非常有效。此外,您可以使用 FlatList 的功能轻松自定义您自己的日历(将 notes/tasks 添加到日期,设置任务的截止日期,...)。

如果您还不熟悉 FlatList,可以在 FlatList documentation

阅读更多信息