fix fingerprint request after switching themes

This commit is contained in:
2025-01-16 12:13:04 +02:00
parent ae36bb5b28
commit a2e471cb23

View File

@@ -287,7 +287,11 @@ class _MIHAppDrawerState extends State<MIHAppDrawer> {
}); });
if (await SuperTokens.doesSessionExist() == if (await SuperTokens.doesSessionExist() ==
false) { false) {
Navigator.of(context).popAndPushNamed('/'); Navigator.of(context).pop();
Navigator.of(context).popAndPushNamed(
'/',
arguments: AuthArguments(true, false),
);
} }
}, },
), ),
@@ -316,7 +320,12 @@ class _MIHAppDrawerState extends State<MIHAppDrawer> {
.changeTheme(ThemeMode.dark); .changeTheme(ThemeMode.dark);
//print("Dark Mode: $darkm"); //print("Dark Mode: $darkm");
} }
Navigator.of(context).popAndPushNamed('/'); Navigator.of(context).pop();
Navigator.of(context).popAndPushNamed(
'/',
arguments: AuthArguments(true, false),
);
// Navigator.of(context).popAndPushNamed('/',);
}); });
}, },
child: Image(image: logoThemeSwitch), child: Image(image: logoThemeSwitch),