buildFirstPageProgressIndicator method

Widget buildFirstPageProgressIndicator(
  1. BuildContext context
)

Builds the progress indicator shown while loading the first page.

Override this method to customize the first page loading indicator.

Implementation

Widget buildFirstPageProgressIndicator(BuildContext context) {
  return const LoadingIndicator();
}