Last active
April 24, 2017 19:41
-
-
Save fbencosme/59bb889f47d8404bfc9d6544e9e340c2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static class NetworkHelpers | |
{ | |
public static IObservable<T> WithProgressDialog<T>(this IObservable<T> source, Activity act) | |
{ | |
var p = new AlertDialog.Builder(act).Create(); | |
p.Show(); | |
return source.Finally(p.Dismiss); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment