Template
mapbox_autocomplete_search_widget
MapboxAutocompleteSearchWidget is a flutter package that allows you to search for place name in a autocomplete fashion.
You can use the pub package from here https://pub.dev/packages/mapbox_autocomplete_search_widget

Technical Notes: The search is carried out only when search text length is greater than 2 and also a delay of 1 second is added before placing a server call. (Since user types continuously, unnessarry calls will be made to server. So we make the call with 1 second delay after user has stopped typing.)

The package uses Riverpod for state management. So Please ensure you import flutter_riverpod and wrap the app with ProviderScope.