Solian/lib/router.dart

67 lines
2.0 KiB
Dart
Raw Normal View History

2024-05-18 10:17:16 +00:00
import 'package:go_router/go_router.dart';
import 'package:solian/screens/account.dart';
2024-05-22 15:18:01 +00:00
import 'package:solian/screens/account/personalize.dart';
2024-05-18 16:56:32 +00:00
import 'package:solian/screens/auth/signin.dart';
import 'package:solian/screens/auth/signup.dart';
2024-05-23 12:00:26 +00:00
import 'package:solian/screens/social.dart';
2024-05-19 10:01:00 +00:00
import 'package:solian/screens/posts/publish.dart';
2024-05-22 15:18:01 +00:00
import 'package:solian/shells/basic_shell.dart';
2024-05-18 10:17:16 +00:00
import 'package:solian/shells/nav_shell.dart';
2024-05-18 16:56:32 +00:00
abstract class AppRouter {
2024-05-18 10:17:16 +00:00
static GoRouter instance = GoRouter(
routes: [
ShellRoute(
builder: (context, state, child) =>
NavShell(state: state, child: child),
2024-05-18 10:17:16 +00:00
routes: [
GoRoute(
2024-05-22 15:18:01 +00:00
path: '/',
2024-05-23 12:00:26 +00:00
name: 'social',
builder: (context, state) => const SocialScreen(),
2024-05-18 10:17:16 +00:00
),
GoRoute(
2024-05-22 15:18:01 +00:00
path: '/account',
name: 'account',
2024-05-18 10:17:16 +00:00
builder: (context, state) => const AccountScreen(),
),
2024-05-22 15:18:01 +00:00
],
),
ShellRoute(
builder: (context, state, child) =>
BasicShell(state: state, child: child),
routes: [
GoRoute(
path: '/account/personalize',
name: 'accountPersonalize',
builder: (context, state) => const PersonalizeScreen(),
),
2024-05-18 16:56:32 +00:00
GoRoute(
2024-05-22 15:18:01 +00:00
path: '/auth/sign-in',
name: 'signin',
2024-05-18 16:56:32 +00:00
builder: (context, state) => const SignInScreen(),
),
GoRoute(
2024-05-22 15:18:01 +00:00
path: '/auth/sign-up',
name: 'signup',
2024-05-18 16:56:32 +00:00
builder: (context, state) => const SignUpScreen(),
),
2024-05-18 10:17:16 +00:00
],
),
2024-05-19 10:01:00 +00:00
GoRoute(
2024-05-22 15:18:01 +00:00
path: '/posts/publish',
name: 'postPublishing',
builder: (context, state) {
final arguments = state.extra as PostPublishingArguments?;
return PostPublishingScreen(
edit: arguments?.edit,
reply: arguments?.reply,
repost: arguments?.repost,
realm: state.uri.queryParameters['realm'],
);
},
2024-05-19 10:01:00 +00:00
),
2024-05-18 10:17:16 +00:00
],
);
}