Compare commits

...

1 Commits

Author SHA1 Message Date
Thomas Way
a41372921b chore(mobile): add box shadow to asset details
The details widget can blend with the image when they are similar
colours.
2026-04-05 01:46:12 +01:00

View File

@@ -26,6 +26,14 @@ class AssetDetails extends ConsumerWidget {
decoration: BoxDecoration(
color: context.colorScheme.surface,
borderRadius: const BorderRadius.vertical(top: Radius.circular(20)),
boxShadow: [
BoxShadow(
color: Colors.black.withValues(alpha: 0.2),
offset: const Offset(0, -3),
blurRadius: 10,
spreadRadius: 2,
),
],
),
child: SafeArea(
top: false,