本篇文章給大家分享的是有關如何使用flutter日期時間選擇器,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
創(chuàng)新互聯(lián)公司專業(yè)為企業(yè)提供綠園網(wǎng)站建設、綠園做網(wǎng)站、綠園網(wǎng)站設計、綠園網(wǎng)站制作等企業(yè)網(wǎng)站建設、網(wǎng)頁設計與制作、綠園企業(yè)網(wǎng)站模板建站服務,10余年綠園做網(wǎng)站經(jīng)驗,不只是建網(wǎng)站,更提供有價值的思路和整體網(wǎng)絡服務。
1 日期選擇器
//設置默認顯示的日期為當前 DateTime initialDate = DateTime.now(); void showDefaultYearPicker(BuildContext context) async { final DateTime dateTime = await showDatePicker( context: context, //定義控件打開時默認選擇日期 initialDate: initialDate, //定義控件最早可以選擇的日期 firstDate: DateTime(2018, 1), //定義控件最晚可以選擇的日期 lastDate: DateTime(2022, 1), builder: (BuildContext context, Widget child) { return Theme( data: CommonColors.themData, child: child, ); }, ); if (dateTime != null && dateTime != initialDate) {} }
2 時間選擇器
//設置顯示顯示的時間為當前 TimeOfDay initialTime = TimeOfDay.now(); void showDefaultDatePicker(BuildContext context) async { final TimeOfDay timeOfDay = await showTimePicker( context: context, initialTime: initialTime, builder: (BuildContext context, Widget child) { return Theme( data: CommonColors.themData, child: child, ); }, ); if (timeOfDay != null && timeOfDay != initialTime) { setState(() { initialTime = timeOfDay; }); } }
以上就是如何使用flutter日期時間選擇器,小編相信有部分知識點可能是我們?nèi)粘9ぷ鲿姷交蛴玫降?。希望你能通過這篇文章學到更多知識。更多詳情敬請關注創(chuàng)新互聯(lián)行業(yè)資訊頻道。