flutter_map_polygon_editor 0.1.2 copy "flutter_map_polygon_editor: ^0.1.2" to clipboard
flutter_map_polygon_editor: ^0.1.2 copied to clipboard

Polygon and polyline editor for Flutter Map with drag markers and customizable styling.

example/lib/main.dart

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()),
    );
  }
}
1
likes
150
points
53
downloads

Publisher

unverified uploader

Weekly Downloads

Polygon and polyline editor for Flutter Map with drag markers and customizable styling.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

collection, flutter, flutter_map, flutter_map_dragmarker, latlong2

More

Packages that depend on flutter_map_polygon_editor