Skip to content

Instantly share code, notes, and snippets.

@smetlov
Created June 16, 2016 19:03
Show Gist options
  • Save smetlov/24bee4d43f4cc2c257594edeeede4554 to your computer and use it in GitHub Desktop.
Save smetlov/24bee4d43f4cc2c257594edeeede4554 to your computer and use it in GitHub Desktop.
public abstract class BaseContentPage : ContentPage
{
public void SendAppearing()
{
OnAppearing();
}
public void SendDisappearing()
{
OnDisappearing();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment