This commit is contained in:
Henry Hiles 2025-12-07 16:31:03 -05:00
commit 63a9d2d169
No known key found for this signature in database
15 changed files with 388 additions and 299 deletions

View file

@ -132,7 +132,11 @@ class LoginPage extends HookConsumerWidget {
(homeserver) => Card(
child: ListTile(
title: Text(homeserver.name),
leading: Image.network(homeserver.iconUrl, height: 32),
leading: Image.network(
homeserver.iconUrl,
errorBuilder: (_, _, _) => SizedBox.shrink(),
height: 32,
),
subtitle: Text(homeserver.description),
onTap: isLoading.value
? null