chore: improve image display by adding rounded corners to plugin logos

This commit is contained in:
Kingkor Roy Tirtho 2025-08-01 22:19:47 +06:00
parent 1e61bca1e9
commit 93d6e0642b

View File

@ -55,10 +55,13 @@ class MetadataInstalledPluginItem extends HookConsumerWidget {
return Basic( return Basic(
leading: snapshot.hasData leading: snapshot.hasData
? Image.file( ? ClipRRect(
borderRadius: BorderRadius.circular(8),
child: Image.file(
snapshot.data!, snapshot.data!,
width: 36, width: 36,
height: 36, height: 36,
),
) )
: Container( : Container(
height: 36, height: 36,