Skip to content

Instantly share code, notes, and snippets.

@juucustodio
Last active March 1, 2018 17:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save juucustodio/70d191f3f967ec82ae1420ca314ffaec to your computer and use it in GitHub Desktop.
Save juucustodio/70d191f3f967ec82ae1420ca314ffaec to your computer and use it in GitHub Desktop.
This example show native messages to users in Xamarin.Forms applications - http://julianocustodio.com/native-message
namespace DemoNativeMessage
{
public interface IMessage
{
void LongAlert(string message);
void ShortAlert(string message);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment