Tracking funkció fejlesztése

This commit is contained in:
2026-06-11 01:20:55 +02:00
parent 2364b2311c
commit 01e6105240
18 changed files with 858 additions and 162 deletions
+3 -3
View File
@@ -45,11 +45,11 @@ class MapModeMenuAnchor extends StatelessWidget {
child: const Text('Bejárás')),
MenuItemButton(
leadingIcon: const Icon(Icons.route),
trailingIcon: controller.mode.value == MapSurveyMode.browse
trailingIcon: controller.mode.value == MapSurveyMode.track
? const Icon(Icons.check)
: null,
onPressed: () => controller.setMode(MapSurveyMode.browse),
child: const Text('Track')),
onPressed: () => controller.setMode(MapSurveyMode.track),
child: const Text('Útvonal')),
],
builder: (context, menuController, child) {
return InkWell(