buildNewPageProgressIndicator method

Widget buildNewPageProgressIndicator(
  1. BuildContext context
)

Builds the progress indicator shown while loading subsequent pages.

Override this method to customize the new page loading indicator.

Implementation

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