66 lines
2.1 KiB
Dart
66 lines
2.1 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:provider/provider.dart';
|
|
import 'package:em2rp/providers/local_user_provider.dart';
|
|
import 'package:em2rp/utils/colors.dart';
|
|
|
|
class CustomAppBar extends StatelessWidget implements PreferredSizeWidget {
|
|
final String title;
|
|
final List<Widget>? actions;
|
|
final bool showLogoutButton;
|
|
|
|
const CustomAppBar({
|
|
Key? key,
|
|
required this.title,
|
|
this.actions,
|
|
this.showLogoutButton = true,
|
|
}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return AppBar(
|
|
title: Text(title),
|
|
backgroundColor: AppColors.rouge,
|
|
actions: [
|
|
if (showLogoutButton)
|
|
IconButton(
|
|
icon: const Icon(Icons.logout, color: AppColors.blanc),
|
|
onPressed: () async {
|
|
// Afficher une boîte de dialogue de confirmation
|
|
final shouldLogout = await showDialog<bool>(
|
|
context: context,
|
|
builder: (context) => AlertDialog(
|
|
title: const Text('Déconnexion'),
|
|
content:
|
|
const Text('Voulez-vous vraiment vous déconnecter ?'),
|
|
actions: [
|
|
TextButton(
|
|
onPressed: () => Navigator.pop(context, false),
|
|
child: const Text('Annuler'),
|
|
),
|
|
TextButton(
|
|
onPressed: () => Navigator.pop(context, true),
|
|
child: const Text('Déconnexion'),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
|
|
if (shouldLogout == true) {
|
|
// Déconnexion
|
|
await Provider.of<LocalUserProvider>(context, listen: false)
|
|
.signOut();
|
|
if (context.mounted) {
|
|
Navigator.of(context).pushReplacementNamed('/login');
|
|
}
|
|
}
|
|
},
|
|
),
|
|
if (actions != null) ...actions!,
|
|
],
|
|
);
|
|
}
|
|
|
|
@override
|
|
Size get preferredSize => const Size.fromHeight(kToolbarHeight);
|
|
}
|