80 lines
2.4 KiB
Dart
80 lines
2.4 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
import 'package:go_router/go_router.dart';
|
|
import '../../../core/providers/auth_provider.dart';
|
|
import '../../../widgets/app_back_button.dart';
|
|
import 'client_shell.dart';
|
|
|
|
class MyBookingsScreen extends ConsumerWidget {
|
|
const MyBookingsScreen({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
final auth = ref.watch(authProvider);
|
|
|
|
if (auth.status != AuthStatus.authenticated) {
|
|
return ClientShell(
|
|
appBar: AppBar(
|
|
leading: const AppBackButton(fallbackRoute: '/client'),
|
|
title: const Text('My Bookings'),
|
|
),
|
|
body: Center(
|
|
child: Padding(
|
|
padding: const EdgeInsets.all(32),
|
|
child: Column(
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: [
|
|
const Icon(
|
|
Icons.bookmark_outline,
|
|
size: 64,
|
|
color: Color(0xFFD1D5DB),
|
|
),
|
|
const SizedBox(height: 20),
|
|
const Text(
|
|
'Sign in to view your bookings',
|
|
style: TextStyle(
|
|
fontSize: 18,
|
|
fontWeight: FontWeight.w600,
|
|
color: Color(0xFF111928),
|
|
),
|
|
),
|
|
const SizedBox(height: 8),
|
|
const Text(
|
|
'Create an account or log in to manage your reservations.',
|
|
textAlign: TextAlign.center,
|
|
style: TextStyle(color: Color(0xFF6B7280)),
|
|
),
|
|
const SizedBox(height: 24),
|
|
ElevatedButton(
|
|
onPressed: () => context.push('/role'),
|
|
child: const Text('Sign In'),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
return ClientShell(
|
|
appBar: AppBar(
|
|
leading: const AppBackButton(fallbackRoute: '/client'),
|
|
title: const Text('My Bookings'),
|
|
),
|
|
body: const Center(
|
|
child: Column(
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: [
|
|
Icon(Icons.event_available, size: 64, color: Color(0xFFD1D5DB)),
|
|
SizedBox(height: 16),
|
|
Text(
|
|
'No bookings yet',
|
|
style: TextStyle(fontSize: 16, color: Color(0xFF6B7280)),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|