fix: batch delete servers (#772)

This commit is contained in:
lollipopkit🏳️‍⚧️
2025-06-04 19:28:58 +08:00
committed by GitHub
parent f6d394c71e
commit 741a6442e0
3 changed files with 22 additions and 31 deletions

View File

@@ -144,7 +144,12 @@ class _ServerDetailPageState extends State<ServerDetailPage> with SingleTickerPr
child: LayoutBuilder(
builder: (_, cons) {
if (logoUrl == null) return UIs.placeholder;
return ExtendedImage.network(logoUrl, cache: true, height: cons.maxWidth * 0.2);
return ExtendedImage.network(
logoUrl,
cache: true,
height: cons.maxHeight * 0.2,
width: cons.maxWidth,
);
},
),
);