This repository was archived by the owner on May 1, 2024. It is now read-only.
This repository was archived by the owner on May 1, 2024. It is now read-only.
[Bug] Tapped does not fire while customizing a WebView in Xamarin Forms #14557
Open

Description
Description
Tapped does not fire while customizing a WebView in Xamarin Forms.
Steps to Reproduce
- Run the attached sample
2.Tap on webview control. - Tapped event is not trigged.
Code snippet:
var hybridWebView = new HybridWebView
{
Uri = "index.html"
};
var richTextEditorDoubleTapRecognizer = new TapGestureRecognizer();
richTextEditorDoubleTapRecognizer.NumberOfTapsRequired = 1;
richTextEditorDoubleTapRecognizer.Tapped += RichTextEditorDoubleTapRecognizer_Tapped;
hybridWebView.GestureRecognizers.Add(richTextEditorDoubleTapRecognizer);
Content = hybridWebView;
Expected Behavior
Tapped event should be trigged while tapping on WebView.
Actual Behavior
Tapped event is not trigged while tapping on WebView.