Weekday Scroller
A weekday picker where you can scroll between weeks.

Installing
To use this package, add weekday_scroller
as a dependency in your pubspec.yaml
file.
Usage
WeekdayScroller(
selectedDay: _selectedDay,
changeDay: (value) => setState(() {
_selectedDay = value;
}),
),
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
selectedColor
Color of the selected day circleselectedTextColor
Color of the selected digits texttextColor
Color of the unselected digits textweekdayColor
Is the color of the weekdays 'Mon', 'Tue'...weeknumberColor
Color of the weekday containerweeknumberTextColor
Color of the weekday textdaysInWeek
Specifies the number of weekdays to render, default is 7, so Monday to Sunday