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

25 lines
545 B

4 years ago
import 'package:flutter/material.dart';
import 'package:ansu_ui/pickers/as_two_date_picker.dart';
class RangeDate {
DateTime start;
DateTime end;
RangeDate({
this.start,
this.end,
});
}
///返回值为`bool`且为`true`时,为一小时内
///
///否则返回`RangeDate`
Future<dynamic> show2DatePicker(BuildContext context,
{bool isAnHour, RangeDate date}) async {
return await showModalBottomSheet(
context: context,
builder: (context) {
4 years ago
return AS2DatePicker(isAnHour: isAnHour, date: date);
},
);
}