Terepbejárás geometriák szerkesztése: kontrollpontok és tulajdonságok.

This commit is contained in:
2026-06-19 12:53:50 +02:00
parent 1276ac0610
commit 0257beec38
8 changed files with 921 additions and 108 deletions
@@ -1,4 +1,5 @@
import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'package:terepi_seged/enums/map_edit_tool.dart';
import 'package:terepi_seged/pages/map_survey/presentations/controllers/map_survey_controller.dart';
@@ -56,10 +57,14 @@ class MapFeatureSaveSheet extends StatelessWidget {
const SizedBox(height: 18),
OpacitySlider(ctrl: ctrl),
const SizedBox(height: 10),
if (ctrl.activeEditTool.value != MapEditTool.point) ...[
StrokeSlider(ctrl: ctrl),
const SizedBox(height: 10),
],
Obx(() => ctrl.activeEditTool.value != MapEditTool.point
? Column(children: [
StrokeSlider(ctrl: ctrl),
const SizedBox(
height: 1,
)
])
: const SizedBox.shrink()),
LabelField(ctrl: ctrl),
const SizedBox(height: 24),
SaveSheetActions(ctrl: ctrl),