You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
part of ansu_ui;
|
|
|
|
class RangeDate {
|
|
DateTime start;
|
|
DateTime end;
|
|
RangeDate({
|
|
this.start,
|
|
this.end,
|
|
});
|
|
}
|
|
|
|
Future<RangeDate> show2DatePicker(BuildContext context) async {
|
|
return await showModalBottomSheet(
|
|
context: context,
|
|
builder: (context) {
|
|
return AS2DatePicker();
|
|
},
|
|
);
|
|
}
|