mirror of
https://github.com/kodjodevf/mangayomi.git
synced 2026-04-20 19:12:04 +00:00
Make buttons white for consistency in white mode
The share-button on the top right and the show-episode-list-button next to it.
This commit is contained in:
parent
2c73e6bcf2
commit
58b5050fff
2 changed files with 4 additions and 2 deletions
|
|
@ -1133,6 +1133,7 @@ class _AnimeStreamPageState extends riv.ConsumerState<AnimeStreamPage>
|
|||
_player.pause();
|
||||
}
|
||||
},
|
||||
iconColor: Colors.white,
|
||||
),
|
||||
btnToShowShareScreenshot(
|
||||
widget.episode,
|
||||
|
|
@ -1539,7 +1540,7 @@ class _AnimeStreamPageState extends riv.ConsumerState<AnimeStreamPage>
|
|||
);
|
||||
onChanged?.call(true);
|
||||
},
|
||||
icon: Icon(Icons.adaptive.share),
|
||||
icon: Icon(Icons.adaptive.share, color: Colors.white),
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -15,6 +15,7 @@ Widget btnToShowChapterListDialog(
|
|||
String title,
|
||||
Chapter chapter, {
|
||||
void Function(bool)? onChanged,
|
||||
Color? iconColor,
|
||||
}) {
|
||||
return IconButton(
|
||||
onPressed: () async {
|
||||
|
|
@ -33,7 +34,7 @@ Widget btnToShowChapterListDialog(
|
|||
);
|
||||
onChanged?.call(true);
|
||||
},
|
||||
icon: const Icon(Icons.format_list_numbered_outlined),
|
||||
icon: Icon(Icons.format_list_numbered_outlined, color: iconColor),
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue