size update..

This commit is contained in:
Thomas Fransolet 2024-02-28 16:08:04 +01:00
parent 9551f5f698
commit bbb4c71421

View File

@ -150,8 +150,8 @@ class _EventPopupState extends State<EventPopup> {
height: size.height * 0.05, height: size.height * 0.05,
child: AutoSizeText( child: AutoSizeText(
widget.eventAgenda.name!, widget.eventAgenda.name!,
style: TextStyle(fontSize: 25), style: TextStyle(fontSize: 23),
maxFontSize: 25, maxFontSize: 23,
), ),
), ),
Row( Row(
@ -159,11 +159,11 @@ class _EventPopupState extends State<EventPopup> {
children: [ children: [
Padding( Padding(
padding: const EdgeInsets.only(top: 4.0, left: 2.0, right: 4.0, bottom: 6.0), 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(
padding: const EdgeInsets.all(2.0), 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<EventPopup> {
Icon(Icons.public, size: 13), Icon(Icons.public, size: 13),
Padding( Padding(
padding: const EdgeInsets.all(4.0), 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(), ): SizedBox(),