/// <summary>
        /// Function to open share modal
        /// </summary>
        async Task ShareArticle()
        {
            try
            {
                await PopupNavigation.Instance.PopAsync();

                await DialogsHelper.ShareText($"Check out this article: \n\n {CurrentArticle.Url}");
            }
            catch (Exception ex)
            {
                Debug.WriteLine(ex.Message);
            }
        }