Bonne avancée sur le refactoring du menu evenements
This commit is contained in:
@@ -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),
|
||||
),
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user