Versione OK Pour l'onglet événements.
This commit is contained in:
@@ -189,21 +189,21 @@ class _LoginFormState extends State<LoginForm>
|
||||
),
|
||||
focusedBorder: OutlineInputBorder(
|
||||
borderRadius: BorderRadius.circular(16),
|
||||
borderSide: BorderSide(
|
||||
borderSide: const BorderSide(
|
||||
color: AppTheme.primaryColor,
|
||||
width: 2,
|
||||
),
|
||||
),
|
||||
errorBorder: OutlineInputBorder(
|
||||
borderRadius: BorderRadius.circular(16),
|
||||
borderSide: BorderSide(
|
||||
borderSide: const BorderSide(
|
||||
color: AppTheme.errorColor,
|
||||
width: 2,
|
||||
),
|
||||
),
|
||||
focusedErrorBorder: OutlineInputBorder(
|
||||
borderRadius: BorderRadius.circular(16),
|
||||
borderSide: BorderSide(
|
||||
borderSide: const BorderSide(
|
||||
color: AppTheme.errorColor,
|
||||
width: 2,
|
||||
),
|
||||
@@ -281,21 +281,21 @@ class _LoginFormState extends State<LoginForm>
|
||||
),
|
||||
focusedBorder: OutlineInputBorder(
|
||||
borderRadius: BorderRadius.circular(16),
|
||||
borderSide: BorderSide(
|
||||
borderSide: const BorderSide(
|
||||
color: AppTheme.primaryColor,
|
||||
width: 2,
|
||||
),
|
||||
),
|
||||
errorBorder: OutlineInputBorder(
|
||||
borderRadius: BorderRadius.circular(16),
|
||||
borderSide: BorderSide(
|
||||
borderSide: const BorderSide(
|
||||
color: AppTheme.errorColor,
|
||||
width: 2,
|
||||
),
|
||||
),
|
||||
focusedErrorBorder: OutlineInputBorder(
|
||||
borderRadius: BorderRadius.circular(16),
|
||||
borderSide: BorderSide(
|
||||
borderSide: const BorderSide(
|
||||
color: AppTheme.errorColor,
|
||||
width: 2,
|
||||
),
|
||||
@@ -344,7 +344,7 @@ class _LoginFormState extends State<LoginForm>
|
||||
: Colors.transparent,
|
||||
),
|
||||
child: widget.rememberMe
|
||||
? Icon(
|
||||
? const Icon(
|
||||
Icons.check,
|
||||
size: 14,
|
||||
color: Colors.white,
|
||||
@@ -352,7 +352,7 @@ class _LoginFormState extends State<LoginForm>
|
||||
: null,
|
||||
),
|
||||
const SizedBox(width: 8),
|
||||
Flexible(
|
||||
const Flexible(
|
||||
child: Text(
|
||||
'Se souvenir de moi',
|
||||
style: TextStyle(
|
||||
@@ -374,7 +374,7 @@ class _LoginFormState extends State<LoginForm>
|
||||
HapticFeedback.selectionClick();
|
||||
_showForgotPasswordDialog();
|
||||
},
|
||||
child: Text(
|
||||
child: const Text(
|
||||
'Mot de passe oublié ?',
|
||||
style: TextStyle(
|
||||
fontSize: 14,
|
||||
@@ -413,14 +413,14 @@ class _LoginFormState extends State<LoginForm>
|
||||
shape: RoundedRectangleBorder(
|
||||
borderRadius: BorderRadius.circular(16),
|
||||
),
|
||||
title: Row(
|
||||
title: const Row(
|
||||
children: [
|
||||
Icon(
|
||||
Icons.help_outline,
|
||||
color: AppTheme.primaryColor,
|
||||
),
|
||||
const SizedBox(width: 12),
|
||||
const Text('Mot de passe oublié'),
|
||||
SizedBox(width: 12),
|
||||
Text('Mot de passe oublié'),
|
||||
],
|
||||
),
|
||||
content: const Text(
|
||||
@@ -429,7 +429,7 @@ class _LoginFormState extends State<LoginForm>
|
||||
actions: [
|
||||
TextButton(
|
||||
onPressed: () => Navigator.of(context).pop(),
|
||||
child: Text(
|
||||
child: const Text(
|
||||
'Compris',
|
||||
style: TextStyle(
|
||||
color: AppTheme.primaryColor,
|
||||
|
||||
Reference in New Issue
Block a user