flutter_map_polygon_editor 0.1.2
flutter_map_polygon_editor: ^0.1.2 copied to clipboard
Polygon and polyline editor for Flutter Map with drag markers and customizable styling.
import 'package:flutter/material.dart';
import 'polygon_editor_example.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Polygon Editor Demo',
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.blue),
useMaterial3: true,
),
home: const SafeArea(child: PolygonEditorExample()),
);
}
}