horizontal_calendar_badge 0.0.1
horizontal_calendar_badge: ^0.0.1 copied to clipboard
A customizable horizontal calendar widget with badge support
horizontal_calendar_badge #
A customizable and scrollable horizontal calendar widget for Flutter with support for daily badge counts and multi-language locale formatting (e.g., Tamil, Hindi, English). Ideal for displaying events, complaints, or activities on a timeline view.
Features #
- Horizontal scrollable date strip
- Badge count support per day
- Locale support (e.g.
tafor Tamil,enfor English) - Fully customizable through generic data model
- Easy integration into filter UIs
Getting started #
Make sure your pubspec.yaml includes:
dependencies:
horizontal_calendar_badge: ^1.0.0
## USAGE
CustomHorizontalCalendar<MyModel>(
selectedDate: selectedDate,
onDateSelected: (date) {
setState(() => selectedDate = date);
},
items: myList,
getItemDate: (item) => item.createdAt,
locale: 'ta', // 'en', 'hi', etc.
)
## Credits
This package is developed by Meharaj Nisha and maintained by Kullooo (https://github.com/kullooo).
Special thanks to the Flutter and Dart teams for the amazing ecosystem.