mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-12 23:45:18 +00:00
chore: improve image display by adding rounded corners to plugin logos
This commit is contained in:
parent
1e61bca1e9
commit
93d6e0642b
@ -55,10 +55,13 @@ class MetadataInstalledPluginItem extends HookConsumerWidget {
|
||||
|
||||
return Basic(
|
||||
leading: snapshot.hasData
|
||||
? Image.file(
|
||||
snapshot.data!,
|
||||
width: 36,
|
||||
height: 36,
|
||||
? ClipRRect(
|
||||
borderRadius: BorderRadius.circular(8),
|
||||
child: Image.file(
|
||||
snapshot.data!,
|
||||
width: 36,
|
||||
height: 36,
|
||||
),
|
||||
)
|
||||
: Container(
|
||||
height: 36,
|
||||
|
Loading…
Reference in New Issue
Block a user