Fix activity timeout overflow (#3442)

* Fix activity timeout overflow

* chore: wrap error message

---------

Co-authored-by: ggurdin <ggurdin@gmail.com>
This commit is contained in:
Kelrap 2025-07-11 16:43:09 -04:00 committed by GitHub
parent 52ac8526e6
commit 657b652bc2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -23,11 +23,12 @@ class ErrorIndicator extends StatelessWidget {
size: iconSize ?? 24.0,
),
const SizedBox(width: 8),
Text(
message,
style: style,
maxLines: 1,
overflow: TextOverflow.ellipsis,
Flexible(
child: Text(
message,
style: style,
textAlign: TextAlign.center,
),
),
],
);