suggestionsNotFoundBuilder property

WidgetBuilder? suggestionsNotFoundBuilder
final

Called when TextFieldBlocState.suggestions returns an empty array.

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

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

If not specified, a simple text is shown

Implementation

final WidgetBuilder? suggestionsNotFoundBuilder;