🐛 Fix android screenshot share issue

This commit is contained in:
LittleSheep 2025-04-05 15:51:44 +08:00
parent 9d685fa0d9
commit aed7c61ba0

View File

@ -407,4 +407,10 @@ final appRouter = GoRouter(
),
),
],
onException: (context, state, router) {
if (state.error is GoException) {
router.goNamed('/');
}
},
navigatorKey: GlobalKey(),
);