Created
January 14, 2021 16:27
-
-
Save sjehutch/4baf91c5e2a81c6583e6b721c2ae9334 to your computer and use it in GitHub Desktop.
Page Navigation Xamarin Service
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
using System; | |
using System.Threading.Tasks; | |
using Xamarin.Forms; | |
namespace NewYoutube.Services | |
{ | |
public interface IPageService | |
{ | |
Task PushAsync(Page page); | |
Task PushModalAsync(Page page); | |
Task<Page> PopAsync(); | |
Task<bool> DisplayAlert(string title, string message, string ok, string cancel); | |
Task DisplayAlert(string title, string message, string ok); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment