chore: increase text sizes in activity summary

This commit is contained in:
ggurdin 2025-12-15 12:18:59 -05:00
parent 63b1ab1555
commit 160bc1f445
No known key found for this signature in database
GPG key ID: A01CB41737CBB478

View file

@ -155,7 +155,7 @@ class ButtonControlledCarouselView extends StatelessWidget {
child: Text(
"${userRole.role ?? L10n.of(context).participant} | ${user?.calcDisplayname() ?? p.participantId.localpart}",
style: const TextStyle(
fontSize: 12.0,
fontSize: 14.0,
),
overflow: TextOverflow.ellipsis,
),
@ -170,7 +170,7 @@ class ButtonControlledCarouselView extends StatelessWidget {
p.participantId.localpart ??
p.participantId,
),
style: const TextStyle(fontSize: 12.0),
style: const TextStyle(fontSize: 14.0),
),
),
),
@ -188,7 +188,7 @@ class ButtonControlledCarouselView extends StatelessWidget {
Text(
p.cefrLevel,
style: const TextStyle(
fontSize: 12.0,
fontSize: 14.0,
),
),
//const SizedBox(width: 8),
@ -217,10 +217,9 @@ class ButtonControlledCarouselView extends StatelessWidget {
),
],
if (p.superlatives.isNotEmpty) ...[
//const SizedBox(width: 8),
Text(
p.superlatives.first,
style: const TextStyle(fontSize: 12.0),
style: const TextStyle(fontSize: 14.0),
),
],
],
@ -287,7 +286,7 @@ class SuperlativeTile extends StatelessWidget {
const Text(
"1st",
style: TextStyle(
fontSize: 12.0,
fontSize: 14.0,
),
),
],