mirror of
https://github.com/Xevion/paperless-mobile.git
synced 2025-12-06 13:15:49 -06:00
16 lines
546 B
Dart
16 lines
546 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:go_router/go_router.dart';
|
|
import 'package:paperless_mobile/features/sharing/view/consumption_queue_view.dart';
|
|
import 'package:paperless_mobile/routing/navigation_keys.dart';
|
|
import 'package:paperless_mobile/routing/routes.dart';
|
|
|
|
class UploadQueueRoute extends GoRouteData {
|
|
static final GlobalKey<NavigatorState> $parentNavigatorKey =
|
|
outerShellNavigatorKey;
|
|
|
|
@override
|
|
Widget build(BuildContext context, GoRouterState state) {
|
|
return const ConsumptionQueueView();
|
|
}
|
|
}
|