|
|
@ -68,7 +68,9 @@ class _ScoreViewDecoration extends StatelessWidget {
|
|
|
|
const radius = BorderRadius.all(Radius.circular(12));
|
|
|
|
const radius = BorderRadius.all(Radius.circular(12));
|
|
|
|
const borderWidth = 5.0;
|
|
|
|
const borderWidth = 5.0;
|
|
|
|
|
|
|
|
|
|
|
|
return DecoratedBox(
|
|
|
|
return Opacity(
|
|
|
|
|
|
|
|
opacity: 0.7,
|
|
|
|
|
|
|
|
child: DecoratedBox(
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
borderRadius: radius,
|
|
|
|
borderRadius: radius,
|
|
|
|
border: Border.all(
|
|
|
|
border: Border.all(
|
|
|
@ -89,6 +91,7 @@ class _ScoreViewDecoration extends StatelessWidget {
|
|
|
|
child: child,
|
|
|
|
child: child,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
|
|
|
|
),
|
|
|
|
);
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|