defaultContentLoadingBuilder static method

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

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

Implementation

static Widget defaultContentLoadingBuilder(BuildContext _, FSelectSearchStyle style) => Padding(
  padding: const EdgeInsets.all(13),
  child: FProgress.circularIcon(style: (s) => style.loadingIndicatorStyle),
);