noItemsFoundBuilder property

WidgetBuilder? noItemsFoundBuilder
final

Called when suggestionsCallback returns an empty array.

It is expected to return a widget to display when no suggestions are avaiable. For example:

(BuildContext context) {
  return Text('No Items Found!');
}

If not specified, a simple text is shown

Implementation

final WidgetBuilder? noItemsFoundBuilder;