From 462d47d182b24c27e14c364766a8aafc5996e272 Mon Sep 17 00:00:00 2001 From: Lizandro Guarnizo <77708265+lizandrogd@users.noreply.github.com> Date: Wed, 22 Jul 2026 08:51:59 -0500 Subject: [PATCH] =?UTF-8?q?fix:=20mostrar=20direcci=C3=B3n=20del=20consult?= =?UTF-8?q?orio=20en=20InfoWindow=20del=20marcador=20del=20mapa?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Sonnet 4.6 --- lib/ui/views/dashboard_view.dart | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/ui/views/dashboard_view.dart b/lib/ui/views/dashboard_view.dart index cc2f338..033a21f 100644 --- a/lib/ui/views/dashboard_view.dart +++ b/lib/ui/views/dashboard_view.dart @@ -448,7 +448,10 @@ class _DashboardViewState extends State { icon: BitmapDescriptor.defaultMarkerWithHue(BitmapDescriptor.hueAzure), infoWindow: InfoWindow( title: prof.user.name, - snippet: prof.professionalInfo.profession, + snippet: [ + if (prof.professionalInfo.profession.isNotEmpty) prof.professionalInfo.profession, + if (prof.professionalInfo.address.isNotEmpty) prof.professionalInfo.address, + ].join(' • '), ), onTap: () => _selectProfessionalFromMarker(prof), ));