공개페이지 접근 오류 수정

This commit is contained in:
2025-10-29 00:38:43 +09:00
parent 37ca611675
commit faa7d4d0a9
2 changed files with 12 additions and 5 deletions
+7
View File
@@ -180,6 +180,13 @@ class MyApp extends StatelessWidget {
settings: settings,
);
}
if (name.startsWith('/events/')) {
final hash = name.substring(8);
return MaterialPageRoute(
builder: (_) => PublicEventEntryScreen(publicHash: hash),
settings: settings,
);
}
return null;
},
);