I want to add grid calendars to my React Native application, which should look like the Month view in Google Calendar (the left image). I have searched for the libraries and found 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 to make a grid calendar or is there any React Native library that supports making grid calendars?
Asked
Active
Viewed 878 times
1 Answers
0
For anyone who was wondering the same thing, you can implement a grid calendar with a FlatList
, which is very efficient in loading dates. Moreover, you can customize your own calendar (add notes/tasks to date, set deadlines for tasks, ...) easily with FlatList
's features.
If you are not familiar with FlatList
yet, more information can be read at FlatList documentation

Đào Minh Dũng
- 200
- 2
- 11