11 lines
381 B
Dart
11 lines
381 B
Dart
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;
|
|
}
|