weekly_date_picker 1.4.2 copy "weekly_date_picker: ^1.4.2" to clipboard
weekly_date_picker: ^1.4.2 copied to clipboard

A weekly date picker where you can scroll between weeks and select a date.

Weekly Date Picker #

A weekday picker where you can scroll between weeks.

Custom styling #

You can remove the week text #

Add custom colors #

You can also make only the weekdays selectable #

Installing #

To use this package, add weekly_date_picker as a dependency in your pubspec.yaml file.

Usage #

WeeklyDatePicker(
  selectedDay: _selectedDay, // DateTime
  changeDay: (value) => setState(() {
    _selectedDay = value;
  }),
),

How to use custom styling #

You can use custom colors and labels by the optional parameters:

  • weekdayText Specifies the weekday text: default is 'Week'
  • weekdays Specifies the weekday strings ['Mon', 'Tue'...]
  • backgroundColor Background color
  • selectedDigitBackgroundColor Color of the selected day circle
  • selectedDigitBorderColor Color of the border of the selected day circle
  • selectedDigitColor Color of the selected digit text
  • digitsColor Color of the unselected digits text
  • weekdayTextColor Is the color of the weekdays 'Mon', 'Tue'...
  • enableWeeknumberText Set to false to hide the weeknumber textfield to the left of the slider
  • weeknumberColor Color of the weekday container
  • weeknumberTextColor Color of the weekday text
  • daysInWeek Specifies the number of weekdays to render, default is 7, so Monday to Sunday
67
likes
140
pub points
90%
popularity

Publisher

unverified uploader

A weekly date picker where you can scroll between weeks and select a date.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, week_of_year

More

Packages that depend on weekly_date_picker