How to use Push Notifications in Xamarin Forms

I just implemented push notification a few days ago, and I’ll share my solution here (based on PushSharp) Step by step guide: 1) In your shared project, create an Interface called IPushNotificationRegister public interface IPushNotificationRegister { void ExtractTokenAndRegister(); } This interface is used for fetching the push token and then send it to the server. … Read more