date_picker_timetable

Creator: coderz1093

Last updated:

Add to Cart

Description:

date picker timetable

DatePickerTimetable #

This package is a fork of https://pub.dev/packages/date_picker_timeline by Vivek Kaushik and the following contributers BradInTheUSA and Roger with updated dependencies and some merged pull requests from the original project.



How To Use #
Import the following package in your dart file
import 'package:date_picker_timetable/date_picker_timetable.dart';
copied to clipboard
Usage #
Use the DatePicker Widget
Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
DatePicker(
DateTime.now(),
initialSelectedDate: DateTime.now(),
selectionColor: Colors.black,
selectedTextColor: Colors.white,
onDateChange: (date) {
// New date selected
setState(() {
_selectedValue = date;
});
},
),
],
)
copied to clipboard
Constructor:
DatePicker(
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);
copied to clipboard
Author #
(END)

License

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

Files:

Customer Reviews

There are no reviews.