ViewBuilder typedef

ViewBuilder = Widget Function(Iterable<Widget> suggestions)

Signature for a function that creates a Widget to layout the suggestion list.

Parameter suggestions is the content list that this function wants to lay out.

Implementation

typedef ViewBuilder = Widget Function(Iterable<Widget> suggestions);