-
Please add in the next release ability to controls maxLines in alert messages( like showToastNotification(...,maxLines:5) |
Beta Was this translation helpful? Give feedback.
Answered by
ElAdrixHD
Jul 4, 2025
Replies: 1 comment
-
You can currently modify this by directly editing the file at this path:
Flexible(
child: Text(
_toastMeta.description,
maxLines: 2, // Change this value
overflow: TextOverflow.ellipsis,
).bodyMedium(
color: context.color.content
.withAlpha((255.0 * 0.8).round())),
), Just change the |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
agordn52
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can currently modify this by directly editing the file at this path:
lib/resources/widgets/toast_notification_widget.dart
Just change the
maxLines
value to the number of lines you need.