router.dart 268 B

12345678910111213
  1. import 'package:go_router/go_router.dart';
  2. import '../features/auth/presentation/login_page.dart';
  3. class AppRouter {
  4. static final router = GoRouter (
  5. routes: [
  6. GoRoute(
  7. path: '/',
  8. builder: (_, __) => const LoginPage(),
  9. )
  10. ]
  11. );
  12. }