ruki_search 0.0.2-dev copy "ruki_search: ^0.0.2-dev" to clipboard
ruki_search: ^0.0.2-dev copied to clipboard

This Widget is a replacement of Flutter's SearchPageDelegate. It's improved upon it and allows multiple type of search, it has in-built fetch async operations and also pagniations for the result page. [...]

This Widget is a replacement for Flutter's SearchPageDelegate. It's improved upon it and allows multiple types of search, it has in-built fetch async operations and also paginations for the result page. The results page and suggestion pages are fully customizable.

Features #

  • ISearchable Make sure to implement the ISearchable class. The search page allows search on any model that has implemented this interface
  • Search Bar Button You can use SearchPage.SearchBarButton as the trigger for the search page or directly implement the search page as is.
  • Lazy Loading and Pagination
  • Direct async data fetch when searching

Getting started #

  • dart pub add ruki_search
  • Implement the ISearchable interface on your models
  • That's it follow the example for more.

Usage #

API Reference #

ISearchable #

Name Description object-type
searchId The searched for item. string
data The serialized object-data Map<string, dynamic>
_buildSearchByPage() {
    return SearchPage.searchBarButton(context, 
    placeholder: "Search by name",
    enableLazyLoading: false,
    showExit: false,
    request: (query) {
      return Future.value([
        Test(name: "Ruki"),
        Test(name: "Ruki2"),
        Test(name: "Ruki3"),
        Test(name: "Ruki4"),
        Test(name: "Ruki5"),
        Test(name: "Ruki6")
      ].where((element) => element.name.toLowerCase().contains(query.toLowerCase())).toList());
    },
    resultBuilder: (result) {
      final modelData = result as Test;
      return Container(
        child: ListTile(
          
          title: Text(modelData.name),
        ),
      );
    
    }
    );
  }
1
likes
0
pub points
0%
popularity

Publisher

unverified uploader

This Widget is a replacement of Flutter's SearchPageDelegate. It's improved upon it and allows multiple type of search, it has in-built fetch async operations and also pagniations for the result page. The results page and suggestion pages are fully customisable.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, flutter_animator, flutter_staggered_animations, line_icons, provider

More

Packages that depend on ruki_search