simple_autocomplete_search 1.0.5 copy "simple_autocomplete_search: ^1.0.5" to clipboard
simple_autocomplete_search: ^1.0.5 copied to clipboard

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.5

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: Function(String),
    suggestions: List<String>,
    filter: Functions(String, String), // First string is suggestion, second is typed characters.
    hint: String,
    border: Border,
    tileMinHeight: double, // default: 50
    tileMaxHeight: double // default: infinity
    hideSuggestionsOnInit: bool // default: true
    )

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
40
pub points
36%
popularity

Publisher

verified publisherspotforest.com

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

Homepage

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on simple_autocomplete_search