mirror of
https://github.com/kodjodevf/mangayomi.git
synced 2026-04-21 03:32:06 +00:00
Adjust page number text shadows
This commit is contained in:
parent
69e4a67f38
commit
edd05f3eb6
1 changed files with 6 additions and 3 deletions
|
|
@ -1764,9 +1764,12 @@ class _MangaChapterPageGalleryState
|
|||
'${_currentIndexLabel(currentIndex)} / ${_readerController.getPageLength(_chapterUrlModel.pageUrls)}',
|
||||
style: const TextStyle(
|
||||
color: Colors.white,
|
||||
fontSize: 15.0,
|
||||
shadows: <Shadow>[
|
||||
Shadow(offset: Offset(0.0, 0.0), blurRadius: 7.0)
|
||||
fontSize: 20.0,
|
||||
shadows: [
|
||||
Shadow(offset: Offset(-1, -1), blurRadius: 1),
|
||||
Shadow(offset: Offset(1, -1), blurRadius: 1),
|
||||
Shadow(offset: Offset(1, 1), blurRadius: 1),
|
||||
Shadow(offset: Offset(-1, 1), blurRadius: 1)
|
||||
],
|
||||
),
|
||||
textAlign: TextAlign.center,
|
||||
|
|
|
|||
Loading…
Reference in a new issue