maps_launcher 3.0.0 maps_launcher: ^3.0.0 copied to clipboard
Simple Flutter plugin to open the maps application (or browser) on all platforms.
import 'package:flutter/material.dart';
import 'package:maps_launcher/maps_launcher.dart';
void main() => runApp(const MyApp());
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: Scaffold(
appBar: AppBar(
title: const Text(
'Maps Launcher Demo',
),
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.center,
children: <Widget>[
ElevatedButton(
onPressed: () => MapsLauncher.launchQuery(
'1600 Amphitheatre Pkwy, Mountain View, CA 94043, USA'),
child: const Text('LAUNCH QUERY'),
),
const SizedBox(height: 32),
ElevatedButton(
onPressed: () => MapsLauncher.launchCoordinates(
37.4220041, -122.0862462, 'Google Headquarters are here'),
child: const Text('LAUNCH COORDINATES'),
),
],
),
),
),
);
}
}