Skip to content

Instantly share code, notes, and snippets.

@juucustodio
Created November 24, 2018 21:42
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/be9fb58bf202b133f58c1af80192660c to your computer and use it in GitHub Desktop.
Save juucustodio/be9fb58bf202b133f58c1af80192660c to your computer and use it in GitHub Desktop.
Example of how to use MessagingCenter in Xamarin.Forms applications. - https://julianocustodio.com/messagingcenter
using System;
namespace DemoMessagingCenter
{
public class Message
{
public string Title { get; set; }
public string Value { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment