有什么方法可以将日期选择器添加为单选按钮中的选项。
像一样的单选按钮有3个选项,任何人都应选择。
month
year
Date Range
如果选择了“日期范围”选项,我想显示选择日期的选项。我有什么办法可以像这样
我的约会范围是这样的
new MaterialButton(
color: Colors.white,
onPressed: () async {
final List<DateTime> picked =
await DateRagePicker.showDatePicker(
context: context,
initialFirstDate: new DateTime.now(),
initialLastDate:
(new DateTime.now()).add(new Duration(days: 7)),
firstDate: new DateTime(2015),
lastDate: new DateTime(2020));
if (picked != null && picked.length == 2) {
print(picked);
}
},
child: new Text("Date Range")),
一旦选择了日期,我就会得到所选的日期,但是我没有找到如何将其添加为单选选项