Skip to content

Commit

Permalink
fix: predictive back in dark mode
Browse files Browse the repository at this point in the history
  • Loading branch information
Yesterday17 committed Sep 16, 2024
1 parent eafb5e6 commit aa94975
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion lib/ui/route/predictive_back_page_transitions_builder.dart
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,14 @@ class _PredictiveBackPageTransition extends StatelessWidget {
Widget _secondaryAnimatedBuilder(BuildContext context, Widget? child) {
return DecoratedBox(
decoration: BoxDecoration(
color: context.colorScheme.onSurface.withOpacity(0.4),
boxShadow: [
BoxShadow(
color: Colors.grey.withOpacity(0.1),
spreadRadius: 2,
blurRadius: 5,
offset: const Offset(0, 3),
),
],
),
child: child,
);
Expand Down

0 comments on commit aa94975

Please sign in to comment.