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'), ], ), ); } }