This repository has been archived on 2024-06-08. You can view files and clone it, but cannot push or open issues or pull requests.
SolarAgent/lib/router.dart

28 lines
732 B
Dart
Raw Normal View History

import 'package:go_router/go_router.dart';
import 'package:solaragent/screens/account.dart';
2024-03-23 15:05:04 +00:00
import 'package:solaragent/screens/explore.dart';
import 'package:solaragent/screens/notifications.dart';
2024-03-23 17:22:01 +00:00
import 'package:solaragent/screens/publish/moment_editor.dart';
final router = GoRouter(
routes: [
GoRoute(
path: '/',
2024-03-23 15:05:04 +00:00
builder: (context, state) => const ExploreScreen(),
),
GoRoute(
path: '/notifications',
builder: (context, state) => const NotificationScreen(),
),
GoRoute(
path: '/account',
builder: (context, state) => const AccountScreen(),
2024-03-23 17:22:01 +00:00
),
GoRoute(
path: '/post/moments',
builder: (context, state) => const MomentEditorScreen(),
),
],
2024-03-23 17:22:01 +00:00
);