fix: auto repair bugs #68 #5

Open
zyc wants to merge 1 commits from fix/auto-20260318-170211 into main

View File

@ -281,7 +281,13 @@ class _BadgeHomePageState extends ConsumerState<BadgeHomePage>
child: Row(
children: [
GestureDetector(
onTap: () => context.pop(),
onTap: () {
if (context.canPop()) {
context.pop();
} else {
context.go('/');
}
},
child: Container(
width: 40,
height: 40,