nova_places_autocomplete

Last updated:

0 purchases

nova_places_autocomplete Image
nova_places_autocomplete Images
Add to Cart

Description:

nova places autocomplete

Nova Places Autocomplete #
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 #

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);
},
)
copied to clipboard

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.