custom_calendar_new 0.0.1
custom_calendar_new: ^0.0.1 copied to clipboard
A customizable calendar widget with support for marking present, leave, holidays, and more.
Custom Calendar #
A customizable calendar widget for Flutter to display present days, holidays, leave days, weekends, and more. Ideal for HR or attendance apps.
Features #
- Swipeable monthly view
- Custom colors and styles for each type of day
- Easy integration into any app
Usage #
import 'package:custom_calendar/custom_calendar.dart';
CustomCalendar(
initialMonth: DateTime.now(),
onMonthChanged: (date, pageIndex) {
print("Month changed: $date");
},
presentDays: [2, 4, 6],
holidays: [9],
leaveDays: [7, 15],
...
);