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:
parent
52ac8526e6
commit
657b652bc2
1 changed files with 6 additions and 5 deletions
|
|
@ -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,
|
||||
),
|
||||
),
|
||||
],
|
||||
);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue