Skip to content

this is going to be dependency search field widget / library for flutter

License

Notifications You must be signed in to change notification settings

presswink/text_search_field

Repository files navigation

search_field

a dependency search field plugins / library for flutter

Getting Started

  1. add below line in your pubspec.yaml
text_search_field: ^0.0.4
  1. call below given command
flutter pub get

Example

  1. simple Example
import 'package:search_field/search_field.dart';
/// global variable
final _firstController = SearchFieldController();

TextSearchField(
  controller: _firstController,
  filterItems: [
    TextSearchFieldDataModel(key: "hey", value: "hello"),
    TextSearchFieldDataModel(key: "hey_1", value: "bro"),
    TextSearchFieldDataModel(key: "hey_2", value: "how are you"),
  ],
  onSelected: (primarySelected, index, item) async {
    print("primary item selected: $primarySelected");
    print("selected item index: $index");
    print("item key: ${item.key}, value: ${item.value}");
    },
)

demo

SearchField screenshot

contributor

@Aditya panther