horizontalcalender 0.0.2 horizontalcalender: ^0.0.2 copied to clipboard
Horizontal Calendar
Flutter Horizontal Date Picker Library that provides a calendar as a horizontal scolling with center selection
## How To Use
Import the following package in your dart file
import 'package:horizontalcalender/horizontalcalender.dart';
Usage #
This version is breaking backwards compatibility
Use the DatePicker
Widget
Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
HorizontalCalendar(
DateTime.now(),
initialSelectedDate: DateTime.now(),
selectionColor: Colors.black,
selectedTextColor: Colors.white,
onDateChange: (date) {
// New date selected
setState(() {
_selectedValue = date;
});
},
),
],
)
Constructor:
HorizontalCalendar(
this.startDate, {
Key key,
this.width,
this.height,
this.controller,
this.monthTextStyle,
this.dayTextStyle,
this.dateTextStyle,
this.selectedTextColor,
this.selectionColor,
this.deactivatedColor,
this.initialSelectedDate,
this.activeDates,
this.inactiveDates,
this.daysCount,
this.onDateChange,
this.locale = "en_US",
}) : super(key: key);