Skip to content

Instantly share code, notes, and snippets.

@alex-relov
Created March 21, 2018 14:54
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save alex-relov/564721b4f7156de5839738d30ce326ef to your computer and use it in GitHub Desktop.
internal class WebViewClientClass : WebViewClient
{
public ProgressBar pb { get; set; }
FragmentBrowser fragment { get; set; }
public WebViewClientClass(FragmentBrowser _fragment)
{
fragment = _fragment;
}
public override void OnPageFinished(WebView view, string url)
{
fragment.Progress(false);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment