nova_places_autocomplete 2.0.0 copy "nova_places_autocomplete: ^2.0.0" to clipboard
nova_places_autocomplete: ^2.0.0 copied to clipboard

TextField lets you search for place information using a variety of categories, including establishments, prominent points of interest, and geographic locations.

Nova Places Autocomplete Pub #

TextField lets you search for place information using a variety of categories, including establishments, prominent points of interest, and geographic locations. You can search for places either by proximity or a text string. A Place Search returns a list of places along with summary information about each place.

This package uses Google Places API and requires an API key. Please check this link out to obtain your API key.

🍭 Remember to enable Places API for your API key.

Demo #

textfield-place-picker.gif

Sample Usage #

import 'package:nova_places_autocomplete/nova_places_autocomplete.dart';

NovaPlacesAutocomplete(
  apiKey: 'api-key',
  detailRequired: true,
  onPicked: (prediction) {
    print(prediction);
  },
  onSearchFailed: (error) {
    print(error);
  },
  onPickedPlaceDetail: (detail) {
    print(detail);
  },
)
1
likes
160
pub points
43%
popularity

Publisher

unverified uploader

TextField lets you search for place information using a variety of categories, including establishments, prominent points of interest, and geographic locations.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, nova_places_api

More

Packages that depend on nova_places_autocomplete