buildLoadingOverlay method

  1. @protected
Widget buildLoadingOverlay(
  1. BuildContext context
)

The widget shown over content that stays on screen while loading: used for LoadingIndicatorStyle.overlay. Defaults to NavigationLogic.defaultLoadingOverlay, else DefaultLoadingOverlay.

Implementation

@protected
Widget buildLoadingOverlay(BuildContext context) {
  return const _DefaultLoading(overlay: true);
}