width name

This commit is contained in:
Thomas Fransolet 2024-02-28 15:35:00 +01:00
parent 5de0ca14cd
commit 91ae2c3c01

View File

@ -138,14 +138,15 @@ class EventListItem extends StatelessWidget {
alignment: Alignment.center, alignment: Alignment.center,
child: AutoSizeText( child: AutoSizeText(
eventAgenda.name!, eventAgenda.name!,
style: TextStyle(fontSize: kDescriptionSize), style: TextStyle(fontSize: 14.0),
maxFontSize: 15, maxFontSize: 14,
), ),
), ),
AutoSizeText( AutoSizeText(
eventAgenda.type!, eventAgenda.type!,
maxFontSize: 12.0, maxFontSize: 12.0,
style: const TextStyle( style: TextStyle(
fontSize: 11.0,
color: Colors.grey, color: Colors.grey,
), ),
), ),