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:
NBA2K1 2025-06-24 22:50:59 +02:00
parent 2c73e6bcf2
commit 58b5050fff
2 changed files with 4 additions and 2 deletions

View file

@ -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),
);
}

View file

@ -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),
);
}