notifyProgressChanged method
- InAppWebViewController controller,
- int progress
Implementation
void notifyProgressChanged(InAppWebViewController controller, int progress) {
if (progress == 100) {
pullToRefreshController.endRefreshing();
}
state = state.copyWith(
controller: WebViewStateProp(controller),
progress: WebViewStateProp(progress / 100.0),
);
}