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:
@@ -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(),
|
||||
|
||||
Reference in New Issue
Block a user