Versione OK Pour l'onglet événements.

This commit is contained in:
DahoudG
2025-09-15 20:15:34 +00:00
parent 8a619ee1bf
commit 12d514d866
73 changed files with 11508 additions and 674 deletions

View File

@@ -199,11 +199,11 @@ class _MembersListPageState extends State<MembersListPage>
children: [
// Titre principal quand l'AppBar est étendu
if (!innerBoxIsScrolled)
Padding(
padding: const EdgeInsets.only(top: 60),
const Padding(
padding: EdgeInsets.only(top: 60),
child: Text(
'Membres',
style: const TextStyle(
style: TextStyle(
color: Colors.white,
fontSize: 28,
fontWeight: FontWeight.bold,
@@ -473,7 +473,7 @@ class _MembersListPageState extends State<MembersListPage>
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Icon(
const Icon(
Icons.people_outline,
size: 80,
color: AppTheme.textHint,

View File

@@ -172,13 +172,13 @@ class _MembreDetailsPageState extends State<MembreDetailsPage>
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Icon(Icons.error, size: 64, color: AppTheme.errorColor),
SizedBox(height: 16),
const Icon(Icons.error, size: 64, color: AppTheme.errorColor),
const SizedBox(height: 16),
Text(state.message),
SizedBox(height: 16),
const SizedBox(height: 16),
ElevatedButton(
onPressed: () => _membresBloc.add(LoadMembreById(widget.membreId)),
child: Text('Réessayer'),
child: const Text('Réessayer'),
),
],
),

View File

@@ -107,13 +107,13 @@ class _MembresDashboardPageState extends State<MembresDashboardPage> {
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Icon(
const Icon(
Icons.error_outline,
size: 64,
color: AppTheme.errorColor,
),
const SizedBox(height: 16),
Text(
const Text(
'Erreur de chargement',
style: TextStyle(
fontSize: 18,
@@ -124,7 +124,7 @@ class _MembresDashboardPageState extends State<MembresDashboardPage> {
const SizedBox(height: 8),
Text(
state.message,
style: TextStyle(
style: const TextStyle(
fontSize: 14,
color: AppTheme.textSecondary,
),