Merge branch 'feature/calendar-create-event' into dev

# Conflicts:
#	apps/lib/features/calendar/ui/screens/calendar_event_detail_screen.dart
This commit is contained in:
qzl
2026-03-02 17:29:21 +08:00
7 changed files with 1257 additions and 123 deletions
+5 -4
View File
@@ -62,6 +62,11 @@ GoRouter createAppRouter(AuthBloc authBloc) {
},
routes: [
GoRoute(path: '/', builder: (context, state) => const LoginScreen()),
GoRoute(
path: '/calendar/events/:id',
builder: (context, state) =>
CalendarEventDetailScreen(eventId: state.pathParameters['id']!),
),
GoRoute(
path: '/register',
builder: (context, state) => const RegisterScreen(),
@@ -109,10 +114,6 @@ GoRouter createAppRouter(AuthBloc authBloc) {
return CalendarMonthScreen(resetToToday: fromHome);
},
),
GoRoute(
path: '/calendar/events/:id',
builder: (context, state) => const CalendarEventDetailScreen(),
),
GoRoute(
path: '/todo',
builder: (context, state) => const TodoQuadrantsScreen(),