mirror of
https://github.com/kodjodevf/mangayomi.git
synced 2026-05-20 00:33:29 +00:00
Merge pull request #610 from hndrbrm/main
Fix: Reverse icon for toggling the Extension.
This commit is contained in:
commit
6e5322137e
1 changed files with 1 additions and 1 deletions
|
|
@ -200,7 +200,7 @@ class _SourceRepositoriesState extends ConsumerState<SourceRepositories> {
|
||||||
icon: Stack(
|
icon: Stack(
|
||||||
children: [
|
children: [
|
||||||
const Icon(Icons.remove_red_eye_outlined),
|
const Icon(Icons.remove_red_eye_outlined),
|
||||||
if (!isHidden)
|
if (isHidden)
|
||||||
Positioned(
|
Positioned(
|
||||||
right: 8,
|
right: 8,
|
||||||
child: Transform.scale(
|
child: Transform.scale(
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue