Skip to content

Commit

Permalink
Fix gradients (again)
Browse files Browse the repository at this point in the history
  • Loading branch information
Process-ing committed Sep 11, 2024
1 parent fd83021 commit 0b08a1a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/uni_ui/lib/navbar/bottom_navbar.dart
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class _BottomNavbarContainer extends StatelessWidget {
decoration: BoxDecoration(
gradient: RadialGradient(
colors: [
Theme.of(context).colorScheme.tertiary.withAlpha(0x4f),
Theme.of(context).colorScheme.tertiary.withAlpha(0x3f),
Colors.transparent,
],
center: Alignment(-0.5, -1.1),
Expand All @@ -47,7 +47,7 @@ class _BottomNavbarContainer extends StatelessWidget {
decoration: BoxDecoration(
gradient: RadialGradient(
colors: [
Theme.of(context).colorScheme.tertiary.withAlpha(0x4f),
Theme.of(context).colorScheme.tertiary.withAlpha(0x3f),
Colors.transparent,
],
center: Alignment.bottomRight,
Expand Down

0 comments on commit 0b08a1a

Please sign in to comment.