Last updated:
0 purchases
scrollable dragable calendar
scrollable_dragable_calendar #
A flutter widget for boxing images.
Features #
scrollable calendar
Getting started #
To use this package, add scrollable_dragable_calendar as a dependency in your pubspec.yaml file.
Usage #
Minimal example:
ScrollableDragableCalendar(initialDate: initialDate, firstDate: firstDate, lastDate: lastDate, onDateSelected: onDateSelected)
copied to clipboard
Custom settings:
ScrollableDragableCalendar(
initialDate: _selectedDate,
firstDate: DateTime.utc(2000, 1, 1),
lastDate: DateTime.utc(2100, 12, 31),
onDateSelected: (date) {
setState(() {
_selectedDate = date;
});
},
leftMargin: 150,
monthColor: Colors.black,
activeDayColor: Colors.black,
activeBackgroundDayColor: const Color(0xFFEBEDF9),
)
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.