Add profile in parameters, initialized page map, group, count.

This commit is contained in:
Van Leemput Dayron
2025-10-01 12:21:00 +02:00
parent 3f7ca54a70
commit ad9393a925
9 changed files with 377 additions and 42 deletions

View File

@@ -0,0 +1,24 @@
import 'package:flutter/material.dart';
class MapContent extends StatelessWidget {
const MapContent({super.key});
@override
Widget build(BuildContext context) {
return Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Icon(Icons.map, size: 80, color: Colors.green),
SizedBox(height: 20),
Text(
'Page de la Carte',
style: TextStyle(fontSize: 24, fontWeight: FontWeight.bold),
),
SizedBox(height: 10),
Text('Ici sera intégrée Google Maps'),
],
),
);
}
}