vph_web_date_picker

Creator: coderz1093

Last updated:

Add to Cart

Description:

vph web date picker

Flutter date picker package for web application #


Showcase #

Usage #
final textFieldKey = GlobalKey();
...
TextField(
key: textFieldKey,
controller: _controller,
onTap: () async {
final pickedDate = await showWebDatePicker(
context: textFieldKey.currentContext!,
initialDate: _selectedDate,
firstDate: DateTime.now().subtract(const Duration(days: 7)),
lastDate: DateTime.now().add(const Duration(days: 14000)),
//width: 300,
//withoutActionButtons: true,
//weekendDaysColor: Colors.red,
selectedDayColor: Colors.brown
//firstDayOfWeekIndex: 1,
);
if (pickedDate != null) {
_selectedDate = pickedDate;
_controller.text = pickedDate.toString();
}
},
),
...
copied to clipboard
showWebDatePicker shows a dialog containing a date picker.
The returned Future resolves to the date selected by the user when the
user confirms the dialog. If the user cancels the dialog, null is returned.
When the date picker is first displayed, it will show the month of
initialDate, with initialDate selected.
The firstDate is the earliest allowable date. The lastDate is the latest
allowable date. initialDate must either fall between these dates,
or be equal to one of them
The width define the width of date picker dialog
The month view action buttons include:

Reset button: jump to initialDate and select it
Today button: jump to today and select it

The withoutActionButtons is true, the action buttons are removed from the month view. Default is false
The weekendDaysColor defines the color of weekend days Saturday and Sunday. Default is null
The firstDayOfWeekIndex defines the first day of the week.
By default, firstDayOfWeekIndex = 0 indicates that Sunday is considered the first day of the week
The selectedDayColor defines the color of selected day. Default is primary color
The confirmButtonColor defines the color of confirm button. Default is primary color
The cancelButtonColor defines the color of cancel button. Default is primary color

License

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

Customer Reviews

There are no reviews.