Skip to content

Commit

Permalink
make shadow less dense
Browse files Browse the repository at this point in the history
  • Loading branch information
ErBWs committed Jan 24, 2025
1 parent 68ce5d2 commit 5d75cbd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions lib/pages/player/player_item_panel.dart
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ class _PlayerItemPanelState extends State<PlayerItemPanel> {
begin: Alignment.topCenter,
end: Alignment.bottomCenter,
colors: [
Colors.black87,
Colors.black45,
Colors.transparent,
],
),
Expand All @@ -378,14 +378,14 @@ class _PlayerItemPanelState extends State<PlayerItemPanel> {
child: SlideTransition(
position: bottomOffsetAnimation,
child: Container(
height: 70,
height: 100,
decoration: const BoxDecoration(
gradient: LinearGradient(
begin: Alignment.topCenter,
end: Alignment.bottomCenter,
colors: [
Colors.transparent,
Colors.black87,
Colors.black45,
],
),
),
Expand Down
4 changes: 2 additions & 2 deletions lib/pages/player/smallest_player_item_panel.dart
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ class _SmallestPlayerItemPanelState extends State<SmallestPlayerItemPanel> {
begin: Alignment.topCenter,
end: Alignment.bottomCenter,
colors: [
Colors.black87,
Colors.black45,
Colors.transparent,
],
),
Expand Down Expand Up @@ -242,7 +242,7 @@ class _SmallestPlayerItemPanelState extends State<SmallestPlayerItemPanel> {
end: Alignment.bottomCenter,
colors: [
Colors.transparent,
Colors.black87,
Colors.black45,
],
),
),
Expand Down

0 comments on commit 5d75cbd

Please sign in to comment.