defaultContentLoadingBuilder static method

Widget defaultContentLoadingBuilder(
  1. BuildContext _,
  2. FAutocompleteContentStyle style
)

The default loading builder that shows a spinner when an asynchronous search is pending.

Implementation

static Widget defaultContentLoadingBuilder(BuildContext _, FAutocompleteContentStyle style) => Padding(
  padding: const EdgeInsets.all(13),
  child: FCircularProgress(style: style.progressStyle),
);