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
Signed by: Henry-Hiles
SSH key fingerprint: SHA256:VKQUdS31Q90KvX7EkKMHMBpUspcmItAh86a+v7PGiIs

View file

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