LoadingViewBuilder typedef

LoadingViewBuilder = Widget Function(BuildContext context, double? progress)

It build a widget for showing a progress Ex. Center(child: CircularProgressIndicator(value: progress))

Implementation

typedef LoadingViewBuilder = Widget Function(BuildContext context, double? progress);