summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Bugzilla27581.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Bugzilla27581.cs')
-rw-r--r--Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Bugzilla27581.cs29
1 files changed, 29 insertions, 0 deletions
diff --git a/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Bugzilla27581.cs b/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Bugzilla27581.cs
new file mode 100644
index 00000000..511e9860
--- /dev/null
+++ b/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Bugzilla27581.cs
@@ -0,0 +1,29 @@
+using System;
+
+using Xamarin.Forms;
+using Xamarin.Forms.CustomAttributes;
+
+namespace Xamarin.Forms.Controls
+{
+ [Preserve (AllMembers=true)]
+ [Issue (IssueTracker.Bugzilla, 27581, "WebView in ContentPage", PlatformAffected.Android)]
+ public class Bugzilla27581 : ContentPage
+ {
+ public Bugzilla27581 ()
+ {
+ Content = new StackLayout {
+ VerticalOptions = LayoutOptions.FillAndExpand,
+ Children = {
+ new Label {
+ XAlign = TextAlignment.Center,
+ Text = "Tap input field, then try to scroll"
+ },
+ new WebView {
+ Source = "http://movinglabs.com/temp/xamarin/input.html",
+ VerticalOptions = LayoutOptions.FillAndExpand
+ }
+ }
+ };
+ }
+ }
+} \ No newline at end of file