| 123456789101112131415161718 |
- import 'package:go_router/go_router.dart';
- import 'package:sino_med_cloud/features/main_tab_page.dart';
- import '../features/auth/presentation/login_page.dart';
- class AppRouter {
- static final router = GoRouter (
- routes: [
- GoRoute(
- path: '/',
- builder: (_, __) => const LoginPage(),
- ),
- GoRoute(
- path: '/mainTab',
- builder: (_, __) => const MainTabPage(),
- )
- ]
- );
- }
|