Copy old project - initial state

This commit is contained in:
2025-01-07 15:19:59 +01:00
parent cae841f0e5
commit afad23ca20
202 changed files with 17563 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
part of 'app_pages.dart';
abstract class Routes {
Routes._();
static const STARTPAGE = '/start_page';
static const HOME = '/home';
static const TEST = '/test';
static const BLUETOOTH = '/bluetooth_test';
static const MAP = '/map';
static const SOCKETTEST = '/socket_test';
static const RTCMTEST = "/rtcm_test";
static const NAVIGATION = "/navigation";
static const MAPTEST = '/map_test';
static const PROPERTYLIST = '/property_list';
static const MEASUREDDATA = '/measured_data';
static const MAPADDPOINTDIALOG = "/map_add_point_dialog";
}