mirror of
https://github.com/kodjodevf/mangayomi.git
synced 2026-03-11 17:25:32 +00:00
fix*
This commit is contained in:
parent
f5b29fc506
commit
c936eda540
1 changed files with 12 additions and 4 deletions
|
|
@ -199,14 +199,22 @@ class _MangaDetailViewState extends ConsumerState<MangaDetailView>
|
|||
Container(
|
||||
width: mediaWidth(context, 1),
|
||||
height: AppBar().preferredSize.height,
|
||||
color: Theme.of(context)
|
||||
.scaffoldBackgroundColor,
|
||||
color: isTablet(context)
|
||||
? Theme.of(context)
|
||||
.scaffoldBackgroundColor
|
||||
: Theme.of(context)
|
||||
.scaffoldBackgroundColor
|
||||
.withOpacity(0.9),
|
||||
),
|
||||
Container(
|
||||
width: mediaWidth(context, 1),
|
||||
height: 465,
|
||||
color:
|
||||
Theme.of(context).scaffoldBackgroundColor,
|
||||
color: isTablet(context)
|
||||
? Theme.of(context)
|
||||
.scaffoldBackgroundColor
|
||||
: Theme.of(context)
|
||||
.scaffoldBackgroundColor
|
||||
.withOpacity(0.9),
|
||||
),
|
||||
],
|
||||
),
|
||||
|
|
|
|||
Loading…
Reference in a new issue