mirror of
https://github.com/austinried/subtracks.git
synced 2025-12-27 09:09:29 +01:00
12 lines
221 B
Dart
12 lines
221 B
Dart
import 'package:go_router/go_router.dart';
|
|
import 'package:subtracks/screens/home.dart';
|
|
|
|
final router = GoRouter(
|
|
routes: [
|
|
GoRoute(
|
|
path: '/',
|
|
builder: (context, state) => HomeScreen(),
|
|
),
|
|
],
|
|
);
|