Activity Calendar
Github-like activity calendar widget.
Features
- Activity Calendar for any days count
- Customizable view
- Optional tooltip for each item
- Optional on tap listener for each item
Usage
For use ActivityCalendar all you need to do is push List<int> that represent count of activity per day.
ActivityCalendar(
activities: activities,
)
Also ActivityCalendar have some arguments to customize it's view.
Activity Calendar is the Scroll View
You need to remember, that ActivityCalendar use GridView under the hood.
So, if you want to use it inside another ScrollView with same scrollDirection, then
you need to use shrinkWrap: true or NestedScrollView.
ActivityCalendar have all arguments, that GridView has, so, you can customize it behavior.
(If you want to know more about nested scrolls, then look for this video by Flutter team)