Use empty text for displayname loading state rather than a SizedBox.shrink to help with jumping messages

This commit is contained in:
Henry Hiles 2026-03-23 19:33:22 -04:00
commit db9fc597f3
No known key found for this signature in database

View file

@ -23,6 +23,6 @@ class MessageDisplayname extends ConsumerWidget {
style: style, style: style,
overflow: TextOverflow.ellipsis, overflow: TextOverflow.ellipsis,
), ),
loading: SizedBox.shrink, loading: () => Text(""),
); );
} }