RhythmBox/lib/router.dart

23 lines
604 B
Dart
Raw Normal View History

2024-08-26 05:29:17 +00:00
import 'package:go_router/go_router.dart';
import 'package:rhythm_box/screens/explore.dart';
import 'package:rhythm_box/screens/settings.dart';
import 'package:rhythm_box/shells/nav_shell.dart';
final router = GoRouter(routes: [
ShellRoute(
builder: (context, state, child) => NavShell(child: child),
routes: [
GoRoute(
path: "/",
name: "explore",
builder: (context, state) => const ExploreScreen(),
),
GoRoute(
path: "/settings",
name: "settings",
builder: (context, state) => const SettingsScreen(),
),
],
),
]);