Terepbejárás oldalon vonal és terület tulajdonságainak szerkesztése, mentés

This commit is contained in:
2026-06-16 14:12:44 +02:00
parent 537897005c
commit 1276ac0610
19 changed files with 1206 additions and 17 deletions
@@ -0,0 +1,15 @@
import 'package:flutter/material.dart';
class ToolbarDivider extends StatelessWidget {
const ToolbarDivider();
@override
Widget build(BuildContext context) {
return Container(
width: 1,
height: 32,
margin: const EdgeInsets.symmetric(horizontal: 4),
color: Theme.of(context).colorScheme.outline.withOpacity(0.22),
);
}
}