Ejemplo n.º 1
0
        void OnGoBackClicked(object sender, EventArgs args)
        {
            Debug.WriteLine($"CanGoBack {MauiWebView.CanGoBack}");

            if (MauiWebView.CanGoBack)
            {
                MauiWebView.GoBack();
            }
        }