place_picker 0.10.0 copy "place_picker: ^0.10.0" to clipboard
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.

example/example.dart

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);
  }
}
145
likes
80
points
878
downloads

Publisher

verified publisherdegreat.co.uk

Weekly Downloads

Place picker fully written in dart for Flutter. Comes with autocomplete suggestions and nearby locations list. Localization too.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter, geolocator, google_maps_flutter, http

More

Packages that depend on place_picker