v1.0.3day_month_picker
使用此包轻松选择您想要的月份和日期!从选择器中挑选简单的日期选择过程——无需选择年份。享受吧!
30喜欢 79近 30 天下载150Pub 分数
AndroidiOSWebmacOSWindowsLinux
一个仓库,可帮助您从对话框中选择月份和该月的日期。如果您不想向用户显示年份选项
{"sdk":"flutter"}{"sdk":"flutter"}^3.0.0以下为英文项目原文快照,最新内容请访问 GitHub。
The DayMonthPicker widget is a customizable Flutter component that allows users to select a specific day and month from a dialog interface. It is particularly useful in forms or applications where date input is needed without year.
Easy selection of months and days Customizable appearance Built-in support for existing day and month values Callback function to handle changes
const DayMonthPicker({
Key? key,
this.surfaceTintColor,
this.titleTextStyle,
this.selectedMonthBgColor = Colors.blue,
this.unSelectedMonthBgColor = Colors.white,
this.selectedDayBgColor = Colors.blue,
this.unSelectedDayBgColor = Colors.white,
this.title = "Date Month Picker",
this.selectedMonthTextStyle = const TextStyle(color: Colors.white, fontSize: 14),
this.unSelectedMonthTextStyle = const TextStyle(color: Colors.black, fontSize: 14),
this.selectedDayTextStyle = const TextStyle(color: Colors.white, fontSize: 12),
this.unSelectedDayTextStyle = const TextStyle(color: Colors.black, fontSize: 12),
this.child = const Padding(
padding: EdgeInsets.all(8.0),
child: Text("Month Picker"),
),
this.cancelTextStyle = const TextStyle(color: Colors.grey, fontSize: 16),
this.okTextStyle = const TextStyle(color: Colors.blue, fontSize: 16),
this.existingDay,
this.existingMonth,
required this.onChange,
});
Short and useful examples for package users.
DayMonthPicker(onChange: (DayMonth? dayMonth){
if(dayMonth != null) {
print("Day: ${dayMonth.day}");
print("Month: ${dayMonth.month}");
}
}),
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: Text('Day Month Picker Example')),
body: Center(
child: DayMonthPicker(
onChange: (dayMonth) {
// Do something with the selected day and month
print('Selected Day: ${dayMonth.day}, Month: ${dayMonth.month}');
},
),
),
);
}
Day Month Picker Example
Day Month Picker Example image (7)