feat: date range picker
This commit is contained in:
@@ -98,8 +98,8 @@ class _SalesPageState extends State<SalesPage> {
|
||||
},
|
||||
onDateRangeChanged: (start, end) {
|
||||
setState(() {
|
||||
startDate = start;
|
||||
endDate = end;
|
||||
startDate = start ?? startDate;
|
||||
endDate = end ?? endDate;
|
||||
});
|
||||
|
||||
context.read<OrderLoaderBloc>().add(
|
||||
|
||||
Reference in New Issue
Block a user