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.
ansu_ui/lib/pickers/as_date_range_picker_part.dart

20 lines
315 B

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();
},
);
}