GnssService osztály és refraktorálás a app_drawer miatt, shellview bevezetés.

This commit is contained in:
2026-05-11 13:50:40 +02:00
parent f1a3753f36
commit af5d9d2c0b
18 changed files with 1048 additions and 192 deletions
+8
View File
@@ -28,6 +28,9 @@ import 'package:terepi_seged/pages/tracking/presentation/views/tracking_view.dar
import '../pages/map_test/bindings/map_test_bindings.dart';
import '../pages/map_test/presentation/views/map_test_view.dart';
import '../pages/shell/bindings/shell_binding.dart';
import '../pages/shell/presentations/views/shell_view.dart';
part 'app_routes.dart';
// ignore: avoid_classes_with_only_static_members
@@ -46,6 +49,11 @@ class AppPages {
name: Routes.STARTPAGE,
page: () => const StartPage(),
binding: StartPageBinding()),
GetPage(
name: Routes.SHELL,
page: () => const ShellView(),
binding: ShellBinding(),
),
GetPage(
name: Routes.MAP, page: () => const MapView(), binding: MapBinding()),
GetPage(
+3
View File
@@ -19,4 +19,7 @@ abstract class Routes {
static const TRACKING = '/tracking';
static const MAPADDPOINTDIALOG = "/map_add_point_dialog";
static const LOGIN = '/login';
static const SHELL = '/shell';
}