Remove flutter chat #26
1 changed files with 3 additions and 1 deletions
fix incorrectly ellipsised messages
commit
ffdcc89de0
|
|
@ -252,7 +252,9 @@ class EventRenderer extends ConsumerWidget {
|
||||||
style: textStyle,
|
style: textStyle,
|
||||||
text: body,
|
text: body,
|
||||||
maxLines: maxLines,
|
maxLines: maxLines,
|
||||||
overflow: TextOverflow.ellipsis,
|
overflow: maxLines == null
|
||||||
|
? null
|
||||||
|
: TextOverflow.ellipsis,
|
||||||
options: LinkifyOptions(
|
options: LinkifyOptions(
|
||||||
humanize: false,
|
humanize: false,
|
||||||
),
|
),
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue