Enhance trip details view with map options and improved layout

This commit is contained in:
Dayron
2025-11-03 15:26:52 +01:00
parent e3dad39c4f
commit cb253831a0
2 changed files with 628 additions and 319 deletions

View File

@@ -4,9 +4,9 @@ import 'package:travel_mate/blocs/trip/trip_bloc.dart';
import 'package:travel_mate/blocs/trip/trip_event.dart'; import 'package:travel_mate/blocs/trip/trip_event.dart';
import 'package:travel_mate/components/home/create_trip_content.dart'; import 'package:travel_mate/components/home/create_trip_content.dart';
import 'package:travel_mate/models/trip.dart'; import 'package:travel_mate/models/trip.dart';
import 'package:travel_mate/components/map/map_content.dart';
import 'package:travel_mate/services/error_service.dart'; import 'package:travel_mate/services/error_service.dart';
import 'package:url_launcher/url_launcher.dart'; // Ajouter cet import import 'package:url_launcher/url_launcher.dart';
import 'package:travel_mate/components/map/map_content.dart'; // Ajouter cet import si la page carte existe
class ShowTripDetailsContent extends StatefulWidget { class ShowTripDetailsContent extends StatefulWidget {
final Trip trip; final Trip trip;
@@ -19,6 +19,14 @@ class ShowTripDetailsContent extends StatefulWidget {
class _ShowTripDetailsContentState extends State<ShowTripDetailsContent> { class _ShowTripDetailsContentState extends State<ShowTripDetailsContent> {
final ErrorService _errorService = ErrorService(); final ErrorService _errorService = ErrorService();
// Calculer les jours restants avant le voyage
int get daysUntilTrip {
final now = DateTime.now();
final tripStart = widget.trip.startDate;
final difference = tripStart.difference(now).inDays;
return difference > 0 ? difference : 0;
}
// Méthode pour ouvrir la carte interne // Méthode pour ouvrir la carte interne
void _openInternalMap() { void _openInternalMap() {
Navigator.push( Navigator.push(
@@ -30,255 +38,387 @@ class _ShowTripDetailsContentState extends State<ShowTripDetailsContent> {
); );
} }
// Méthode pour afficher le dialogue de sélection de carte
void _showMapOptions() {
final theme = Theme.of(context);
showDialog(
context: context,
builder: (BuildContext context) {
return AlertDialog(
backgroundColor: theme.dialogBackgroundColor,
title: Text(
'Ouvrir la carte',
style: theme.textTheme.titleLarge?.copyWith(
color: theme.colorScheme.onSurface,
),
),
content: Column(
mainAxisSize: MainAxisSize.min,
children: [
Text(
'Choisissez comment vous souhaitez ouvrir la carte :',
style: theme.textTheme.bodyMedium?.copyWith(
color: theme.colorScheme.onSurface,
),
),
const SizedBox(height: 20),
// Options centrées verticalement
Column(
children: [
// Carte de l'application
SizedBox(
width: double.infinity,
child: ElevatedButton.icon(
onPressed: () {
Navigator.pop(context);
_openInternalMap();
},
icon: const Icon(Icons.map),
label: const Text('Carte de l\'app'),
style: ElevatedButton.styleFrom(
backgroundColor: Colors.blue,
foregroundColor: Colors.white,
padding: const EdgeInsets.symmetric(vertical: 12),
),
),
),
const SizedBox(height: 12),
// Google Maps
SizedBox(
width: double.infinity,
child: ElevatedButton.icon(
onPressed: () {
Navigator.pop(context);
_openGoogleMaps();
},
icon: const Icon(Icons.directions),
label: const Text('Google Maps'),
style: ElevatedButton.styleFrom(
backgroundColor: Colors.green,
foregroundColor: Colors.white,
padding: const EdgeInsets.symmetric(vertical: 12),
),
),
),
const SizedBox(height: 12),
// Waze
SizedBox(
width: double.infinity,
child: ElevatedButton.icon(
onPressed: () {
Navigator.pop(context);
_openWaze();
},
icon: const Icon(Icons.navigation),
label: const Text('Waze'),
style: ElevatedButton.styleFrom(
backgroundColor: Colors.orange,
foregroundColor: Colors.white,
padding: const EdgeInsets.symmetric(vertical: 12),
),
),
),
],
),
],
),
actions: [
TextButton(
onPressed: () => Navigator.pop(context),
child: Text(
'Annuler',
style: TextStyle(color: theme.colorScheme.primary),
),
),
],
);
},
);
}
// Méthode pour ouvrir Google Maps // Méthode pour ouvrir Google Maps
Future<void> _openGoogleMaps() async { Future<void> _openGoogleMaps() async {
final location = Uri.encodeComponent(widget.trip.location); final location = Uri.encodeComponent(widget.trip.location);
final url = 'https://www.google.com/maps/search/?api=1&query=$location';
try { try {
final uri = Uri.parse(url); // Essayer d'abord l'URL scheme pour l'app mobile
if (await canLaunchUrl(uri)) { final appUrl = 'comgooglemaps://?q=$location';
await launchUrl(uri, mode: LaunchMode.externalApplication); final appUri = Uri.parse(appUrl);
} else { if (await canLaunchUrl(appUri)) {
// Fallback: essayer l'URL scheme pour l'app mobile await launchUrl(appUri);
final appUrl = 'comgooglemaps://?q=$location'; return;
final appUri = Uri.parse(appUrl);
if (await canLaunchUrl(appUri)) {
await launchUrl(appUri);
} else {
// Si rien ne marche, afficher un message d'erreur
if (mounted) {
_errorService.showError(
message:
'Impossible d\'ouvrir Google Maps, veuillez vérifier que l\'application est installée.',
);
}
}
} }
// Fallback vers l'URL web
final webUrl = 'https://www.google.com/maps/search/?api=1&query=$location';
final webUri = Uri.parse(webUrl);
if (await canLaunchUrl(webUri)) {
await launchUrl(webUri, mode: LaunchMode.externalApplication);
return;
}
_errorService.showError(
message: 'Impossible d\'ouvrir Google Maps. Vérifiez que l\'application est installée.',
);
} catch (e) { } catch (e) {
if (mounted) { _errorService.showError(
ScaffoldMessenger.of(context).showSnackBar( message: 'Erreur lors de l\'ouverture de Google Maps',
SnackBar( );
content: Text('Erreur lors de l\'ouverture de Google Maps: $e'), }
backgroundColor: Colors.red, }
),
); // Méthode pour ouvrir Waze
Future<void> _openWaze() async {
final location = Uri.encodeComponent(widget.trip.location);
try {
// Essayer d'abord l'URL scheme pour l'app mobile
final appUrl = 'waze://?q=$location';
final appUri = Uri.parse(appUrl);
if (await canLaunchUrl(appUri)) {
await launchUrl(appUri);
return;
} }
// Fallback vers l'URL web
final webUrl = 'https://waze.com/ul?q=$location';
final webUri = Uri.parse(webUrl);
if (await canLaunchUrl(webUri)) {
await launchUrl(webUri, mode: LaunchMode.externalApplication);
return;
}
_errorService.showError(
message: 'Impossible d\'ouvrir Waze. Vérifiez que l\'application est installée.',
);
} catch (e) {
_errorService.showError(
message: 'Erreur lors de l\'ouverture de Waze',
);
} }
} }
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
final isDarkMode = Theme.of(context).brightness == Brightness.dark; final theme = Theme.of(context);
final textColor = isDarkMode ? Colors.white : Colors.black; final isDarkMode = theme.brightness == Brightness.dark;
final secondaryTextColor = isDarkMode ? Colors.white70 : Colors.grey[600];
return Scaffold( return Scaffold(
appBar: AppBar(title: Text(widget.trip.title)), backgroundColor: isDarkMode ? theme.scaffoldBackgroundColor : Colors.grey[50],
body: Padding( appBar: AppBar(
padding: const EdgeInsets.all(16.0), backgroundColor: Colors.transparent,
elevation: 0,
leading: IconButton(
icon: Icon(Icons.arrow_back, color: theme.colorScheme.onSurface),
onPressed: () => Navigator.pop(context),
),
title: Text(
widget.trip.title,
style: theme.textTheme.titleLarge?.copyWith(
color: theme.colorScheme.onSurface,
fontWeight: FontWeight.w600,
),
),
actions: [
IconButton(
icon: Icon(Icons.more_vert, color: theme.colorScheme.onSurface),
onPressed: () => _showOptionsMenu(),
),
],
),
body: SingleChildScrollView(
child: Column( child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [ children: [
Text( // Image du voyage
widget.trip.title, Container(
style: TextStyle( height: 250,
fontSize: 24,
fontWeight: FontWeight.bold,
color: textColor,
),
),
SizedBox(height: 8),
Text(widget.trip.description, style: TextStyle(color: textColor)),
SizedBox(height: 16),
Row(
children: [
Icon(Icons.location_on, size: 16, color: secondaryTextColor),
SizedBox(width: 8),
Text(
widget.trip.location,
style: TextStyle(fontSize: 14, color: secondaryTextColor),
),
],
),
SizedBox(height: 8),
Row(
children: [
Icon(Icons.calendar_today, size: 16, color: secondaryTextColor),
SizedBox(width: 8),
Text(
'${widget.trip.startDate.day}/${widget.trip.startDate.month}/${widget.trip.startDate.year} - ${widget.trip.endDate.day}/${widget.trip.endDate.month}/${widget.trip.endDate.year}',
style: TextStyle(fontSize: 14, color: secondaryTextColor),
),
],
),
SizedBox(height: 8),
Row(
children: [
Icon(Icons.group, size: 16, color: secondaryTextColor),
SizedBox(width: 8),
Text(
'${widget.trip.participants.length} participant${widget.trip.participants.length > 1 ? 's' : ''}',
style: TextStyle(fontSize: 14, color: secondaryTextColor),
),
],
),
SizedBox(height: 16),
Text(
'Budget: ${widget.trip.budget ?? 'N/A'}',
style: TextStyle(color: textColor),
),
SizedBox(height: 24),
// Section des boutons de carte
Text(
'Explorer la destination',
style: TextStyle(
fontSize: 18,
fontWeight: FontWeight.bold,
color: textColor,
),
),
SizedBox(height: 16),
// Boutons en ligne
Row(
children: [
// Bouton carte interne
Expanded(
child: ElevatedButton.icon(
onPressed: _openInternalMap,
icon: Icon(Icons.map, color: Colors.white),
label: Text(
'Voir sur la carte',
style: TextStyle(
color: Colors.white,
fontWeight: FontWeight.w500,
),
),
style: ElevatedButton.styleFrom(
backgroundColor: const Color.fromARGB(255, 102, 102, 102),
padding: EdgeInsets.symmetric(vertical: 12),
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(8),
),
),
),
),
SizedBox(width: 12),
// Bouton Google Maps
Expanded(
child: ElevatedButton.icon(
onPressed: _openGoogleMaps,
icon: Icon(Icons.directions, color: Colors.white),
label: Text(
'Google Maps',
style: TextStyle(
color: Colors.white,
fontWeight: FontWeight.w500,
),
),
style: ElevatedButton.styleFrom(
backgroundColor: const Color.fromARGB(255, 102, 102, 102),
padding: EdgeInsets.symmetric(vertical: 12),
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(8),
),
),
),
),
],
),
SizedBox(height: 24),
// Boutons existants
SizedBox(
width: double.infinity, width: double.infinity,
height: 50, margin: const EdgeInsets.all(16),
child: ElevatedButton( decoration: BoxDecoration(
onPressed: () async { borderRadius: BorderRadius.circular(16),
final result = await Navigator.push( boxShadow: [
context, BoxShadow(
MaterialPageRoute( color: Colors.black.withValues(alpha:0.1),
builder: (context) => blurRadius: 10,
CreateTripContent(tripToEdit: widget.trip), offset: const Offset(0, 5),
),
);
if (result == true && mounted) {
Navigator.pop(context, true); // Retour avec flag
}
},
style: ElevatedButton.styleFrom(
backgroundColor: Color.fromARGB(255, 0, 123, 255),
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(12),
), ),
), ],
child: Text( ),
'Modifier les informations du voyage', child: ClipRRect(
style: TextStyle( borderRadius: BorderRadius.circular(16),
color: Colors.white, child: widget.trip.imageUrl != null && widget.trip.imageUrl!.isNotEmpty
fontWeight: FontWeight.bold, ? Image.network(
fontSize: 16, widget.trip.imageUrl!,
), fit: BoxFit.cover,
), errorBuilder: (context, error, stackTrace) => _buildPlaceholderImage(),
)
: _buildPlaceholderImage(),
), ),
), ),
SizedBox(height: 16),
SizedBox( // Contenu principal
width: double.infinity, Padding(
height: 50, padding: const EdgeInsets.all(16),
child: ElevatedButton( child: Column(
onPressed: () { crossAxisAlignment: CrossAxisAlignment.start,
showDialog( children: [
context: context, // Section "Départ dans X jours"
builder: (context) => AlertDialog( Container(
title: Text('Confirmer la suppression'), padding: const EdgeInsets.symmetric(horizontal: 16, vertical: 12),
content: Text( decoration: BoxDecoration(
'Êtes-vous sûr de vouloir supprimer ce voyage ? Cette action est irréversible.', color: theme.cardColor,
borderRadius: BorderRadius.circular(12),
border: Border.all(
color: isDarkMode
? Colors.white.withValues(alpha:0.1)
: Colors.black.withValues(alpha:0.1),
width: 1,
), ),
actions: [ boxShadow: [
TextButton( BoxShadow(
onPressed: () => Navigator.pop(context), color: isDarkMode
child: Text('Annuler'), ? Colors.black.withValues(alpha:0.3)
), : Colors.black.withValues(alpha:0.1),
TextButton( blurRadius: isDarkMode ? 8 : 5,
onPressed: () { offset: const Offset(0, 2),
context.read<TripBloc>().add( ),
TripDeleteRequested(tripId: widget.trip.id!), ],
); ),
Navigator.pop(context); // Fermer le dialogue child: Row(
Navigator.pop( children: [
context, Container(
true, padding: const EdgeInsets.all(8),
); // Retourner à l'écran précédent decoration: BoxDecoration(
}, color: Colors.teal.withValues(alpha:0.1),
child: Text( borderRadius: BorderRadius.circular(8),
'Supprimer', ),
style: TextStyle(color: Colors.red), child: Icon(
), Icons.flight_takeoff,
color: Colors.teal,
size: 20,
),
),
const SizedBox(width: 12),
Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
'Départ dans',
style: theme.textTheme.bodySmall?.copyWith(
color: theme.colorScheme.onSurface.withValues(alpha:0.6),
),
),
Text(
daysUntilTrip > 0 ? '$daysUntilTrip Jours' : 'Voyage terminé',
style: theme.textTheme.titleMedium?.copyWith(
fontWeight: FontWeight.bold,
color: theme.colorScheme.onSurface,
),
),
Text(
widget.trip.formattedDates,
style: theme.textTheme.bodySmall?.copyWith(
color: theme.colorScheme.onSurface.withValues(alpha:0.6),
),
),
],
), ),
], ],
), ),
);
},
style: ElevatedButton.styleFrom(
backgroundColor: Colors.red,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(12),
), ),
),
child: Text( const SizedBox(height: 24),
'Supprimer le voyage',
style: TextStyle( // Section Participants
color: Colors.white, Text(
fontWeight: FontWeight.bold, 'Participants',
fontSize: 16, style: theme.textTheme.titleMedium?.copyWith(
fontWeight: FontWeight.bold,
color: theme.colorScheme.onSurface,
),
), ),
), const SizedBox(height: 12),
Row(
children: [
// Avatars des participants (limité à 4 + bouton add)
...List.generate(
widget.trip.totalParticipants > 4 ? 4 : widget.trip.totalParticipants,
(index) => Container(
margin: const EdgeInsets.only(right: 8),
child: CircleAvatar(
radius: 25,
backgroundColor: Colors.blue[100],
child: Icon(
Icons.person,
color: Colors.blue[600],
size: 24,
),
),
),
),
// Bouton d'ajout si moins de 4 participants affichés
if (widget.trip.totalParticipants <= 4)
Container(
width: 50,
height: 50,
decoration: BoxDecoration(
shape: BoxShape.circle,
border: Border.all(
color: Colors.grey[300]!,
width: 2,
style: BorderStyle.solid,
),
),
child: Icon(
Icons.add,
color: Colors.grey[400],
size: 24,
),
),
],
),
const SizedBox(height: 32),
// Grille d'actions
GridView.count(
shrinkWrap: true,
physics: const NeverScrollableScrollPhysics(),
crossAxisCount: 2,
childAspectRatio: 1.5,
crossAxisSpacing: 16,
mainAxisSpacing: 16,
children: [
_buildActionButton(
icon: Icons.calendar_today,
title: 'Calendrier',
color: Colors.blue,
onTap: () => _showComingSoon('Calendrier'),
),
_buildActionButton(
icon: Icons.local_activity,
title: 'Activités',
color: Colors.green,
onTap: () => _showComingSoon('Activités'),
),
_buildActionButton(
icon: Icons.account_balance_wallet,
title: 'Dépenses',
color: Colors.orange,
onTap: () => _showComingSoon('Dépenses'),
),
_buildActionButton(
icon: Icons.map,
title: 'Ouvrir la carte',
color: Colors.purple,
onTap: _showMapOptions,
),
],
),
],
), ),
), ),
], ],
@@ -286,4 +426,202 @@ class _ShowTripDetailsContentState extends State<ShowTripDetailsContent> {
), ),
); );
} }
Widget _buildPlaceholderImage() {
return Container(
color: Colors.grey[200],
child: const Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Icon(
Icons.location_city,
size: 48,
color: Colors.grey,
),
SizedBox(height: 8),
Text(
'Aucune image',
style: TextStyle(
color: Colors.grey,
fontSize: 14,
),
),
],
),
),
);
}
Widget _buildActionButton({
required IconData icon,
required String title,
required Color color,
required VoidCallback onTap,
}) {
final theme = Theme.of(context);
final isDarkMode = theme.brightness == Brightness.dark;
return InkWell(
onTap: onTap,
borderRadius: BorderRadius.circular(12),
child: Container(
padding: const EdgeInsets.all(16),
decoration: BoxDecoration(
color: theme.cardColor,
borderRadius: BorderRadius.circular(12),
border: Border.all(
color: isDarkMode
? Colors.white.withValues(alpha:0.1)
: Colors.black.withValues(alpha:0.1),
width: 1,
),
boxShadow: [
BoxShadow(
color: isDarkMode
? Colors.black.withValues(alpha:0.3)
: Colors.black.withValues(alpha:0.1),
blurRadius: isDarkMode ? 8 : 5,
offset: const Offset(0, 2),
),
],
),
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Container(
padding: const EdgeInsets.all(12),
decoration: BoxDecoration(
color: color.withValues(alpha: 0.1),
borderRadius: BorderRadius.circular(8),
),
child: Icon(
icon,
color: color,
size: 24,
),
),
const SizedBox(height: 8),
Text(
title,
style: theme.textTheme.bodySmall?.copyWith(
fontWeight: FontWeight.w600,
color: theme.colorScheme.onSurface,
),
textAlign: TextAlign.center,
),
],
),
),
);
}
void _showComingSoon(String feature) {
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(
content: Text('$feature - Fonctionnalité à venir'),
backgroundColor: Colors.blue,
),
);
}
void _showOptionsMenu() {
final theme = Theme.of(context);
showModalBottomSheet(
context: context,
backgroundColor: theme.bottomSheetTheme.backgroundColor,
shape: const RoundedRectangleBorder(
borderRadius: BorderRadius.vertical(top: Radius.circular(20)),
),
builder: (context) => Container(
padding: const EdgeInsets.all(20),
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
ListTile(
leading: Icon(Icons.edit, color: theme.colorScheme.primary),
title: Text(
'Modifier le voyage',
style: theme.textTheme.bodyLarge?.copyWith(
color: theme.colorScheme.onSurface,
),
),
onTap: () async {
Navigator.pop(context);
final result = await Navigator.push(
context,
MaterialPageRoute(
builder: (context) =>
CreateTripContent(tripToEdit: widget.trip),
),
);
if (result == true && mounted) {
Navigator.pop(context, true);
}
},
),
ListTile(
leading: const Icon(Icons.delete, color: Colors.red),
title: Text(
'Supprimer le voyage',
style: theme.textTheme.bodyLarge?.copyWith(
color: theme.colorScheme.onSurface,
),
),
onTap: () {
Navigator.pop(context);
_showDeleteConfirmation();
},
),
],
),
),
);
}
void _showDeleteConfirmation() {
final theme = Theme.of(context);
showDialog(
context: context,
builder: (context) => AlertDialog(
backgroundColor: theme.dialogBackgroundColor,
title: Text(
'Confirmer la suppression',
style: theme.textTheme.titleLarge?.copyWith(
color: theme.colorScheme.onSurface,
),
),
content: Text(
'Êtes-vous sûr de vouloir supprimer ce voyage ? Cette action est irréversible.',
style: theme.textTheme.bodyMedium?.copyWith(
color: theme.colorScheme.onSurface,
),
),
actions: [
TextButton(
onPressed: () => Navigator.pop(context),
child: Text(
'Annuler',
style: TextStyle(color: theme.colorScheme.primary),
),
),
TextButton(
onPressed: () {
context.read<TripBloc>().add(
TripDeleteRequested(tripId: widget.trip.id!),
);
Navigator.pop(context);
Navigator.pop(context, true);
},
child: const Text(
'Supprimer',
style: TextStyle(color: Colors.red),
),
),
],
),
);
}
} }

View File

@@ -165,105 +165,76 @@ class _TripCardState extends State<TripCard> {
width: double.infinity, width: double.infinity,
child: _buildImageWidget(), child: _buildImageWidget(),
), ),
), // Informations du voyage ),
Padding( // Informations du voyage
padding: const EdgeInsets.all(16), Padding(
child: Column( padding: const EdgeInsets.all(16),
crossAxisAlignment: CrossAxisAlignment.start, child: Column(
children: [ crossAxisAlignment: CrossAxisAlignment.start,
Text( children: [
widget.trip.title, // Titre du voyage
style: TextStyle( Text(
fontSize: 18, widget.trip.title,
fontWeight: FontWeight.bold, style: TextStyle(
color: textColor, fontSize: 20,
fontWeight: FontWeight.bold,
color: textColor,
),
maxLines: 1,
overflow: TextOverflow.ellipsis,
), ),
maxLines: 1,
overflow: TextOverflow.ellipsis,
),
const SizedBox(height: 4),
Row(
children: [
Icon(Icons.location_on, size: 16, color: secondaryTextColor),
const SizedBox(width: 4),
Expanded(
child: Text(
widget.trip.location,
style: TextStyle(color: secondaryTextColor),
maxLines: 1,
overflow: TextOverflow.ellipsis,
),
),
],
),
const SizedBox(height: 8),
Text(
widget.trip.description,
style: TextStyle(color: secondaryTextColor, fontSize: 12),
maxLines: 2,
overflow: TextOverflow.ellipsis,
),
const SizedBox(height: 12),
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
'Dates',
style: TextStyle(
color: secondaryTextColor,
fontSize: 10,
fontWeight: FontWeight.w500,
),
),
Text(
widget.trip.formattedDates,
style: TextStyle(color: textColor, fontSize: 12),
),
],
),
Column(
crossAxisAlignment: CrossAxisAlignment.end,
children: [
Text(
'Participants',
style: TextStyle(
color: secondaryTextColor,
fontSize: 10,
fontWeight: FontWeight.w500,
),
),
Text(
'${widget.trip.totalParticipants - 1} personne${widget.trip.totalParticipants > 1 ? 's' : ''}',
style: TextStyle(color: textColor, fontSize: 12),
),
],
),
],
),
if (widget.trip.budget != null && widget.trip.budget! > 0) ...[
const SizedBox(height: 8), const SizedBox(height: 8),
Container(
padding: const EdgeInsets.symmetric(horizontal: 8, vertical: 4), // Dates, participants et bouton voir
decoration: BoxDecoration( Row(
color: Colors.green.withValues(alpha: 0.1), children: [
borderRadius: BorderRadius.circular(6), // Colonne avec dates et participants
), Expanded(
child: Text( child: Column(
'Budget: ${widget.trip.budget!.toStringAsFixed(0)}', crossAxisAlignment: CrossAxisAlignment.start,
style: TextStyle( children: [
color: Colors.green[700], // Dates
fontSize: 11, Text(
fontWeight: FontWeight.w500, widget.trip.formattedDates,
style: TextStyle(
color: secondaryTextColor,
fontSize: 14,
),
),
const SizedBox(height: 4),
// Participants
Text(
'${widget.trip.totalParticipants - 1} participant${widget.trip.totalParticipants > 1 ? 's' : ''}',
style: TextStyle(
color: secondaryTextColor,
fontSize: 14,
),
),
],
),
), ),
),
// Bouton Voir
ElevatedButton(
onPressed: widget.onTap,
style: ElevatedButton.styleFrom(
backgroundColor: Colors.blue,
foregroundColor: Colors.white,
padding: const EdgeInsets.symmetric(horizontal: 20, vertical: 8),
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(20),
),
),
child: const Text(
'Voir',
style: TextStyle(fontSize: 14),
),
),
],
), ),
], ],
], ),
), ),
),
], ],
), ),
), ),