formatting

This commit is contained in:
mertalev
2025-07-30 20:21:24 -04:00
parent b81081e777
commit 4f19dacecd
12 changed files with 58 additions and 117 deletions

View File

@@ -102,10 +102,7 @@ class _BlurredBackdrop extends HookWidget {
child: DecoratedBox(
decoration: BoxDecoration(
image: DecorationImage(
image: getFullImageProvider(
asset,
size: Size(context.width, context.height),
),
image: getFullImageProvider(asset, size: Size(context.width, context.height)),
fit: BoxFit.cover,
),
),

View File

@@ -57,15 +57,8 @@ class DriftMemoryCard extends ConsumerWidget {
child: Stack(
children: [
ColorFiltered(
colorFilter: ColorFilter.mode(
Colors.black.withValues(alpha: 0.2),
BlendMode.darken,
),
child: SizedBox(
width: 205,
height: 200,
child: Thumbnail.fromBaseAsset(asset: memory.assets[0]),
),
colorFilter: ColorFilter.mode(Colors.black.withValues(alpha: 0.2), BlendMode.darken),
child: SizedBox(width: 205, height: 200, child: Thumbnail.fromBaseAsset(asset: memory.assets[0])),
),
Positioned(
bottom: 16,