customLoading static method
void
customLoading({
- required Widget builder(),
- bool barrierDismissible = false,
- ComToastConfig? config,
显示自定义Loading
Implementation
static void customLoading({
required Widget Function(BuildContext) builder,
bool barrierDismissible = false,
ComToastConfig? config,
}) {
_loadingManager.showCustomLoading(
builder: builder,
barrierDismissible: barrierDismissible,
config: config,
);
}