Importált rétegek stílusának szerkesztése

This commit is contained in:
2026-07-04 23:36:01 +02:00
parent 077b40967c
commit 2cf83149f0
12 changed files with 341 additions and 64 deletions
+10
View File
@@ -0,0 +1,10 @@
import 'package:flutter/material.dart';
import 'package:get/get.dart';
/// Közös interfész — MapSurveyController és LayerStyleSession is implementálja.
/// A ColorRow, OpacitySlider, StrokeSlider ezt várja (nem a teljes controllert).
abstract class StyleEditable {
Rx<Color> get activeEditColor;
RxDouble get activeEditOpacity;
RxDouble get activeEditStrokeWidth;
}