flutter_maps 0.1.0 copy "flutter_maps: ^0.1.0" to clipboard
flutter_maps: ^0.1.0 copied to clipboard

Native maps for Flutter, embedded as a native view using the PlatformView API.

example/lib/main.dart

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(),
      ),
    );
  }
}
5
likes
35
pub points
56%
popularity

Publisher

unverified uploader

Native maps for Flutter, embedded as a native view using the PlatformView API.

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_maps