place_picker 0.10.0 place_picker: ^0.10.0 copied to clipboard
Place picker fully written in dart for Flutter. Comes with autocomplete suggestions and nearby locations list. Localization too.
import 'package:flutter/material.dart';
import 'package:place_picker/place_picker.dart';
class PickerDemo extends StatefulWidget {
@override
State<StatefulWidget> createState() => PickerDemoState();
}
class PickerDemoState extends State<PickerDemo> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: const Text('Picker Example')),
body: Center(
child: FlatButton(
child: Text("Pick Delivery location"),
onPressed: () {
showPlacePicker();
},
),
),
);
}
void showPlacePicker() async {
LocationResult? result = await Navigator.of(context).push(
MaterialPageRoute(builder: (context) => PlacePicker("YOUR API KEY")));
// Handle the result in your way
print(result);
}
}