feat(ui): implement award mockup redesign
Build & Deploy Pluriwave / Análisis de código (push) Successful in 10s
Build & Deploy Pluriwave / Build APK + AAB release (push) Successful in 1m19s

This commit is contained in:
2026-05-20 21:29:36 +02:00
parent eb0ef37c76
commit d8acf74771
14 changed files with 621 additions and 211 deletions
+11 -1
View File
@@ -10,13 +10,15 @@ class PluriGlassSurface extends StatelessWidget {
required this.child,
this.padding = const EdgeInsets.all(16),
this.borderRadius,
this.blurSigma = 14,
this.blurSigma = 18,
this.glowColor,
});
final Widget child;
final EdgeInsetsGeometry padding;
final BorderRadius? borderRadius;
final double blurSigma;
final Color? glowColor;
@override
Widget build(BuildContext context) {
@@ -32,6 +34,14 @@ class PluriGlassSurface extends StatelessWidget {
color: t.glassSurface,
borderRadius: radius,
border: Border.all(color: t.glassBorder),
boxShadow: [
BoxShadow(
color: glowColor ?? t.glowColor.withValues(alpha: 0.12),
blurRadius: 30,
spreadRadius: -14,
offset: const Offset(0, 18),
),
],
),
child: Padding(padding: padding, child: child),
),