feat(mobile): smaller default local thumbnail size

This commit is contained in:
Alex 2024-11-18 17:41:56 -06:00
parent 41f138d3c8
commit 63ed6283fc
No known key found for this signature in database
GPG Key ID: 53CD082B3A5E1082

View File

@ -18,8 +18,8 @@ class ImmichLocalThumbnailProvider
ImmichLocalThumbnailProvider({ ImmichLocalThumbnailProvider({
required this.asset, required this.asset,
this.height = 256, this.height = 128,
this.width = 256, this.width = 128,
}) : assert(asset.local != null, 'Only usable when asset.local is set'); }) : assert(asset.local != null, 'Only usable when asset.local is set');
/// Converts an [ImageProvider]'s settings plus an [ImageConfiguration] to a key /// Converts an [ImageProvider]'s settings plus an [ImageConfiguration] to a key