Task <bool> ConfirmFollowRemovingAsync(IFollowable item)
 {
     return(_dialogService.ShowMessageDialog(
                content: "ConfirmRemoveFollow_DialogDescWithItemName".Translate(item.GetLabel()),
                title: "ConfirmRemoveFollow_DialogTitle".Translate(),
                acceptButtonText: "RemoveFollow".Translate(),
                cancelButtonText: "Cancel".Translate()
                ));
 }
 void NotifyFollowRemoved(IFollowable item)
 {
     _notificationService.ShowLiteInAppNotification_Success("FollowRemovedNotification_WithItemName".Translate(item.GetLabel()));
 }