Implémentation partielle du profil de l'utilisateur

This commit is contained in:
DahoudG
2024-08-27 19:28:44 +00:00
parent 7feb3bf65e
commit 8e0a005918
8 changed files with 452 additions and 54 deletions

View File

@@ -0,0 +1,19 @@
import 'package:flutter/material.dart';
class SocialScreen extends StatelessWidget {
const SocialScreen({super.key});
@override
Widget build(BuildContext context) {
return Center(
child: Text(
'Social',
style: TextStyle(
color: Colors.white,
fontSize: 24,
fontWeight: FontWeight.bold,
),
),
);
}
}