chore(mobile): add box shadow to asset details (#27510)

The details widget can blend with the image when they are similar
colours.
This commit is contained in:
Thomas
2026-05-06 20:43:55 +01:00
committed by GitHub
parent bfdff12ee0
commit f09769a2f3
@@ -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,