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 5a9e29be34 - Show all commits

ignore pointer for reply preview

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

View file

@ -150,28 +150,33 @@ class EventRenderer extends ConsumerWidget {
), ),
)) { )) {
AsyncData(:final value?) || AsyncData(:final value?) ||
AsyncLoading(:final value?) => Row( AsyncLoading(
spacing: 8, :final value?,
children: [ ) => IgnorePointer(
MessageAvatar(value, height: 24), child: Row(
Flexible( spacing: 8,
child: MessageDisplayname( children: [
value, MessageAvatar(value, height: 24),
style: TextStyle( Flexible(
color: child: MessageDisplayname(
theme.colorScheme.primary, value,
fontWeight: FontWeight.bold, style: TextStyle(
color: theme
.colorScheme
.primary,
fontWeight: FontWeight.bold,
),
), ),
), ),
), Expanded(
Expanded( child: EventRenderer(
child: EventRenderer( value,
value, textOnly: true,
textOnly: true, maxLines: 1,
maxLines: 1, ),
), ),
), ],
], ),
), ),
AsyncError _ => Text( AsyncError _ => Text(
"An error occurred while fetching the reply", "An error occurred while fetching the reply",