Remove flutter chat #26

Manually merged
Henry-Hiles merged 108 commits from remove-flutter-chat into main 2026-05-22 15:26:28 -04:00
Showing only changes of commit ffdcc89de0 - Show all commits

fix incorrectly ellipsised messages

Henry Hiles 2026-05-20 10:20:17 -04:00
Signed by: Henry-Hiles
SSH key fingerprint: SHA256:VKQUdS31Q90KvX7EkKMHMBpUspcmItAh86a+v7PGiIs

View file

@ -252,7 +252,9 @@ class EventRenderer extends ConsumerWidget {
style: textStyle,
text: body,
maxLines: maxLines,
overflow: TextOverflow.ellipsis,
overflow: maxLines == null
? null
: TextOverflow.ellipsis,
options: LinkifyOptions(
humanize: false,
),