flutter_maps 0.1.0 flutter_maps: ^0.1.0 copied to clipboard
Native maps for Flutter, embedded as a native view using the PlatformView API.
import 'package:flutter/material.dart';
import 'package:flutter_maps/flutter_maps.dart';
void main() => runApp(MyApp());
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Flutter Maps example app'),
),
body: FlutterMap(),
),
);
}
}