diff --git a/lib/Screens/Agenda/event_popup.dart b/lib/Screens/Agenda/event_popup.dart index c5466b9..a29a1e7 100644 --- a/lib/Screens/Agenda/event_popup.dart +++ b/lib/Screens/Agenda/event_popup.dart @@ -114,7 +114,7 @@ class _EventPopupState extends State { border: Border(right: BorderSide(width: 0.05, color: kMainGrey)), color: Colors.grey, ), - width: 225, + width: size.width * 0.17, height: size.height, child: CachedNetworkImage( imageUrl: widget.eventAgenda.image!, @@ -177,7 +177,7 @@ class _EventPopupState extends State { padding: const EdgeInsets.only(left: 15), child: Container( height: size.height * 0.65, - width: size.width * 0.45, + width: size.width * 0.38, decoration: BoxDecoration( color: kBackgroundLight, borderRadius: BorderRadius.all(Radius.circular(20.0)) @@ -220,7 +220,7 @@ class _EventPopupState extends State { ), ), SizedBox( - width: size.width * 0.3, + width: size.width * 0.32, height: size.height * 0.65, child: Padding( padding: const EdgeInsets.all(8.0), @@ -230,7 +230,7 @@ class _EventPopupState extends State { children: [ widget.eventAgenda.address!.lat != null && widget.eventAgenda.address!.lng != null ? SizedBox( - width: size.width * 0.25, + width: size.width * 0.28, height: size.height * 0.2, child: GoogleMap( mapToolbarEnabled: false, @@ -244,7 +244,8 @@ class _EventPopupState extends State { markers: markers, ), ): SizedBox(), - SizedBox( + Container( + color: Colors.green, width: size.width * 0.28, height: size.height * 0.35, child: Column(