flutter_osm_plugin 0.4.1 flutter_osm_plugin: ^0.4.1 copied to clipboard
openStreetMap plugin for flutter apps (only Android for now, iOS will be supported in future)
import 'package:flutter/material.dart';
import 'package:flutter_osm_plugin_example/main_example.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: MainExample(),
);
}
}