place_picker_v2 0.0.2 place_picker_v2: ^0.0.2 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_v2/entities/location_result.dart';
import 'package:place_picker_v2/widgets/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: TextButton(
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);
}
}