First commit

This commit is contained in:
Van Leemput Dayron
2025-09-30 15:53:48 +02:00
commit 807b66f919
145 changed files with 6206 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
import 'package:flutter/material.dart';
class ProfileContent extends StatelessWidget {
const ProfileContent({super.key});
@override
Widget build(BuildContext context) {
return Padding(
padding: EdgeInsets.all(16),
child: Center(
child: Column(
children: [
CircleAvatar(
radius: 50,
backgroundColor: Colors.blue,
child: Icon(Icons.person, size: 50, color: Colors.white),
),
SizedBox(height: 20),
Text(
'Nom d\'utilisateur',
style: TextStyle(fontSize: 24, fontWeight: FontWeight.bold),
),
SizedBox(height: 10),
Text('email@example.com'),
SizedBox(height: 30),
ElevatedButton(onPressed: () {}, child: Text('Modifier le profil')),
],
),
),
);
}
}