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

@@ -161,7 +161,7 @@ class _LoginScreenState extends State<LoginScreen>
const SizedBox(height: 8),
// Sous-titre
Text(
const Text(
'Connectez-vous à votre compte UnionFlow',
style: TextStyle(
fontSize: 16,
@@ -269,11 +269,11 @@ class _LoginScreenState extends State<LoginScreen>
}
Widget _buildDivider() {
return Row(
return const Row(
children: [
const Expanded(child: Divider()),
Expanded(child: Divider()),
Padding(
padding: const EdgeInsets.symmetric(horizontal: 16),
padding: EdgeInsets.symmetric(horizontal: 16),
child: Text(
'ou',
style: TextStyle(
@@ -282,7 +282,7 @@ class _LoginScreenState extends State<LoginScreen>
),
),
),
const Expanded(child: Divider()),
Expanded(child: Divider()),
],
);
}
@@ -348,7 +348,7 @@ class _LoginScreenState extends State<LoginScreen>
return Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Text(
const Text(
'Pas encore de compte ? ',
style: TextStyle(
color: AppTheme.textSecondary,