diff --git a/lib/Screens/Agenda/event_popup.dart b/lib/Screens/Agenda/event_popup.dart index 59c9286..14340e2 100644 --- a/lib/Screens/Agenda/event_popup.dart +++ b/lib/Screens/Agenda/event_popup.dart @@ -150,8 +150,8 @@ class _EventPopupState extends State { height: size.height * 0.05, child: AutoSizeText( widget.eventAgenda.name!, - style: TextStyle(fontSize: 25), - maxFontSize: 25, + style: TextStyle(fontSize: 23), + maxFontSize: 23, ), ), Row( @@ -159,11 +159,11 @@ class _EventPopupState extends State { children: [ Padding( padding: const EdgeInsets.only(top: 4.0, left: 2.0, right: 4.0, bottom: 6.0), - child: Icon(Icons.calendar_today_rounded, color: kTestSecondColor, size: 20), + child: Icon(Icons.calendar_today_rounded, color: kTestSecondColor, size: 18), ), Padding( padding: const EdgeInsets.all(2.0), - child: Text(dateToShow, style: TextStyle(fontSize: 20, color: kTestSecondColor, fontWeight: FontWeight.w500)), + child: Text(dateToShow, style: TextStyle(fontSize: 18, color: kTestSecondColor, fontWeight: FontWeight.w500)), ) ], ), @@ -289,7 +289,11 @@ class _EventPopupState extends State { Icon(Icons.public, size: 13), Padding( padding: const EdgeInsets.all(4.0), - child: Text(widget.eventAgenda.website!, style: TextStyle(fontSize: 12)), + child: AutoSizeText( + widget.eventAgenda.website!, + style: TextStyle(fontSize: 12), + maxLines: 2, + ), ) ], ): SizedBox(),