mirror of
https://github.com/gabehf/Fladder.git
synced 2026-03-09 07:28:14 -07:00
[Bugfix] Fixed posters shadow bleeding
This commit is contained in:
parent
570376259e
commit
8bda03ee2c
1 changed files with 3 additions and 2 deletions
|
|
@ -97,8 +97,8 @@ class _PosterImageState extends ConsumerState<PosterImage> {
|
||||||
onEnter: (event) => setState(() => hover = true),
|
onEnter: (event) => setState(() => hover = true),
|
||||||
onExit: (event) => setState(() => hover = false),
|
onExit: (event) => setState(() => hover = false),
|
||||||
child: Card(
|
child: Card(
|
||||||
elevation: 8,
|
elevation: 6,
|
||||||
color: Theme.of(context).colorScheme.secondaryContainer.withOpacity(0.2),
|
color: Theme.of(context).colorScheme.secondaryContainer,
|
||||||
shape: RoundedRectangleBorder(
|
shape: RoundedRectangleBorder(
|
||||||
side: BorderSide(
|
side: BorderSide(
|
||||||
width: 1.0,
|
width: 1.0,
|
||||||
|
|
@ -191,6 +191,7 @@ class _PosterImageState extends ConsumerState<PosterImage> {
|
||||||
child: Card(
|
child: Card(
|
||||||
color: Colors.transparent,
|
color: Colors.transparent,
|
||||||
elevation: 3,
|
elevation: 3,
|
||||||
|
shadowColor: Colors.transparent,
|
||||||
child: LinearProgressIndicator(
|
child: LinearProgressIndicator(
|
||||||
minHeight: 7.5,
|
minHeight: 7.5,
|
||||||
backgroundColor: Theme.of(context).colorScheme.onPrimary.withOpacity(0.5),
|
backgroundColor: Theme.of(context).colorScheme.onPrimary.withOpacity(0.5),
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue