calender_picker

Creator: coderz1093

Last updated:

Add to Cart

Description:

calender picker

CalenderPicker #

💥 Flutter CalenderPicker Library that provides a calendar as a horizontal timeline and single section and multiple selections options also available 💥
App Demo #
















Let's get started #
How To Use #
Import the following package in your dart file
import 'package:calender_picker/calender_picker.dart';
copied to clipboard
Usage #
This version is breaking backwards compatibility
Use the CalenderPicker Widget
Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
CalenderPicker(
DateTime.now(),
initialSelectedDate: DateTime.now(),
selectionColor: Colors.black,
selectedTextColor: Colors.white,
onDateChange: (date) {
// New date selected
setState(() {
_selectedValue = date;
});
},
),
],
)
copied to clipboard
Constructor:
CalenderPicker(
this.startDate, {
Key? key,
this.enableMultiSelection = false,
this.monthTextStyle = defaultMonthTextStyle,
this.dayTextStyle = defaultDayTextStyle,
this.dateTextStyle = defaultDateTextStyle,
this.selectedTextColor = Colors.white,
this.selectionColor = AppColors.defaultSelectionColor,
this.initialSelectedDate,
this.activeDates,
this.daysCount = 500,
this.onDateChange,
this.locale = "en_US",
}) : super(key: key);
copied to clipboard
Author #

John Baptist

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.