mirror of
https://github.com/Xevion/paperless-mobile.git
synced 2025-12-06 15:15:50 -06:00
19 lines
558 B
Dart
19 lines
558 B
Dart
import 'package:flutter/widgets.dart';
|
|
import 'package:go_router/go_router.dart';
|
|
import 'package:paperless_mobile/features/landing/view/landing_page.dart';
|
|
import 'package:paperless_mobile/routing/navigation_keys.dart';
|
|
|
|
class LandingBranch extends StatefulShellBranchData {
|
|
static final GlobalKey<NavigatorState> $navigatorKey = landingNavigatorKey;
|
|
|
|
const LandingBranch();
|
|
}
|
|
|
|
class LandingRoute extends GoRouteData {
|
|
const LandingRoute();
|
|
@override
|
|
Widget build(BuildContext context, GoRouterState state) {
|
|
return const LandingPage();
|
|
}
|
|
}
|