Bonne avancée sur le refactoring du menu evenements

This commit is contained in:
DahoudG
2024-08-28 15:23:51 +00:00
parent 6059f64999
commit 7e1cb85160
10 changed files with 682 additions and 149 deletions

View File

@@ -50,25 +50,25 @@ class ProfileScreen extends StatelessWidget {
}
Widget _buildUserInfoSection(BuildContext context) {
return Column(
return const Column(
children: [
const CircleAvatar(
CircleAvatar(
radius: 50,
backgroundImage: AssetImage('lib/assets/images/profile_picture.png'), // Remplacer par la photo de profil
backgroundImage: AssetImage('lib/assets/images/profile_picture.png'), //Photo de profil
),
const SizedBox(height: 10),
const Text(
'Nom Prénom',
SizedBox(height: 10),
Text(
'GBANE Dahoud',
style: TextStyle(fontSize: 22, fontWeight: FontWeight.bold, color: Colors.white),
),
const SizedBox(height: 5),
const Text(
SizedBox(height: 5),
Text(
'pseudo',
style: TextStyle(fontSize: 16, color: Colors.grey),
),
const SizedBox(height: 5),
const Text(
'email@example.com',
SizedBox(height: 5),
Text(
'gbanedahoud@lions.dev',
style: TextStyle(fontSize: 14, color: Colors.grey),
),
],