simple_autocomplete_search 1.0.2+1 copy "simple_autocomplete_search: ^1.0.2+1" to clipboard
simple_autocomplete_search: ^1.0.2+1 copied to clipboard

outdated

Simple autocomplete field with suggestions. You can customize the onPressed function and filtering function.

simple_autocomplete_search #

Really simple and easy to use autocomplete field with suggestions. You can customise what happens when item is selected and how filtering is done. Hint text and borders of the widget are also customizable.

Getting Started #

To get plugin up and running, add following to your pubspec.yaml. Check the latest version number from here.

dependencies:
  simple_autocomplete_search: ^1.0.2

Then get the dependencies using the code editor or command line. In command line you can use

$ flutter pub get

and the last step is to import the package to your dart file by adding following line.

import 'package:autocomplete_textfield/autocomplete_textfield.dart';

Pub Package #

See the Pub Package and the latest released version here.

Usage #

Autocomplete works only with a list of strings. It refreshes when it gains focus.

All parameters are optional, making possible that you can test the package by just importing and using:

SimpleAutocompleteSearch()

Following gif demonstrates the bare minimum app with SimpleAutocompleteSearch. The code can be found in examples.

Bare minimum demo

The simplest search bar use will be following:

List<String> myList = ["foo", "bar"];
void myFunction(String text){
    print(text);
}
SimpleAutocompleteSearch(onSelected: myFunction, suggestions: myList);

SimpleAutocompleteSearch can take following parameters:

SimpleAutocompleteSearch(
    onSelected: myFunction,
    suggestions: myList
    filter: myFilteringFunction
    hint: myString
    border: myBorderWidget);

Filtering function must be in format:

bool myFiltering function(String wholeSuggestion, String typedCharacters)

Following gif is from sample app providing all parameters to SimpleAutocompleteSearch

Bare minimum demo

See the examples to find out more.

5
likes
0
pub points
34%
popularity

Publisher

verified publisherspotforest.com

Simple autocomplete field with suggestions. You can customize the onPressed function and filtering function.

Homepage

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on simple_autocomplete_search