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)