map_launcher 6.0.0
map_launcher: ^6.0.0 copied to clipboard
Map Launcher is a flutter plugin to find available maps installed on a device and launch them with a marker or show directions.
import 'package:flutter/material.dart';
import 'home_page.dart';
import 'theme.dart';
void main() => runApp(const MapLauncherExample());
class MapLauncherExample extends StatelessWidget {
const MapLauncherExample({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Map Launcher',
debugShowCheckedModeBanner: false,
theme: AppTheme.dark,
home: const HomePage(),
);
}
}