feat: date range picker

This commit is contained in:
efrilm
2025-08-15 16:09:25 +07:00
parent 2c75fcf582
commit cc8012354f
7 changed files with 525 additions and 60 deletions
+2 -2
View File
@@ -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(