fix phone dashboard

This commit is contained in:
root
2026-05-27 03:11:45 -04:00
parent 7ca43ba2f3
commit 1112b04516
48 changed files with 1222 additions and 368 deletions
@@ -6,12 +6,14 @@ import '../../../core/models/reservation.dart';
import '../../../widgets/error_view.dart';
import '../../../widgets/status_badge.dart';
const _params = {
'status': 'DRAFT',
'source': 'MARKETPLACE',
'page': 1,
'pageSize': 100,
};
const ReservationQuery _params = (
status: 'DRAFT',
source: 'MARKETPLACE',
page: 1,
pageSize: 100,
search: null,
customerId: null,
);
class OnlineReservationsScreen extends ConsumerWidget {
const OnlineReservationsScreen({super.key});