chore: fix text overflow in ping participants button on small screen with large text in Spanish (#5734)

This commit is contained in:
ggurdin 2026-02-18 09:33:54 -05:00 committed by GitHub
parent 9ce7c7b4cb
commit abc4a9630c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -235,10 +235,13 @@ class ActivitySessionStartView extends StatelessWidget {
mainAxisAlignment:
MainAxisAlignment.center,
children: [
Text(
L10n.of(
context,
).pingParticipants,
Flexible(
child: Text(
L10n.of(
context,
).pingParticipants,
textAlign: TextAlign.center,
),
),
],
),