private void _inAppNotificationService_InAppNotificationRaised(object sender, string e)
 {
     // Relay to codebehind
     InAppNotificationRaised.Invoke(null, e);
 }
 public void ShowInAppNotification(string text)
 {
     InAppNotificationRaised.Invoke(null, text);
 }