day_month_picker 0.0.5 day_month_picker: ^0.0.5 copied to clipboard
This can help you with selecting Month and day of the month
This package will help you select the month and day of the month without showing the year option to the user.
Features #
This package will help you select the month and day of the month without showing the year option to the user.
Getting started #
A basic understanding of Flutter app development. Installation: Add the package dependency to your pubspec.yaml file
dependencies: day_month_picker: ^0.0.4
Usage #
Short and useful examples for package users.
DayMonthPicker(onChange: (DayMonth? dayMonth){
if(dayMonth != null) {
print("Day: ${dayMonth.day}");
print("Month: ${dayMonth.month}");
}
}),
Additional information #
If there is a case where you don't want to show the year option to USER. This package will save your time.
Some UI examples