Skip to content

Commit

Permalink
-Utilized minimumChar in injectSearch method *Forgot to use minimumCh…
Browse files Browse the repository at this point in the history
…ar in last commit
  • Loading branch information
MohamedEL-Torky committed Feb 13, 2020
1 parent e25de56 commit 9968aae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/flappy_search_bar.dart
Expand Up @@ -74,7 +74,7 @@ class SearchBarController<T> {

void injectSearch(
String searchText, Future<List<T>> Function(String text) onSearch) {
if (searchText != null && searchText.length > 3) {
if (searchText != null && searchText.length >= minimumChars) {
_searchQueryController.text = searchText;
_search(searchText, onSearch);
}
Expand Down

0 comments on commit 9968aae

Please sign in to comment.