Day Picker
A Flutter widget library which helps us to select days in a week.
Screenshot
Usage
Add day_picker
to your pubspec.yaml
file.
import the package:
Constructor for the day_picker
is given below.
Example here creates a day_picker
with below style [with Gradient and no borders].

Pass a callback to the onSelect
property with parameter of type List<String>
.
Example:
Customization
Property | Type | Description |
---|---|---|
onSelect | List<String> |
Callback invoked when days are selected |
padding | double |
Padding between container and the buttons [by default it is 8.0] |
boxdecoration | BoxDecoration |
provides variety of ways to style the background container[gradient, color, border radius] |
backgroundColor | Color |
Property to change the color of the container |
daysFillColor | Color |
Property to change the color of rounded buttons when the days are selected |
daysBorderColor | Color |
Property to change the border color of rounded button |
selectedDayTextColor | Color |
property to change the text color of the selected days |
unSelectedDayTextColor | Color |
property to change the text color when the days are not selected |
border | bool |
Set this property to false if border is not needed around the rounded buttons[by default this property will be true] |
Contributions
Contributions of any kind are more than welcome?! Feel free to fork and improve day_picker
or open an issue.