Skip to content

Instantly share code, notes, and snippets.

@sjehutch
Created January 14, 2021 16:27
Show Gist options
  • Save sjehutch/4baf91c5e2a81c6583e6b721c2ae9334 to your computer and use it in GitHub Desktop.
Save sjehutch/4baf91c5e2a81c6583e6b721c2ae9334 to your computer and use it in GitHub Desktop.
Page Navigation Xamarin Service
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