Skip to content
This repository has been archived by the owner on May 1, 2024. It is now read-only.

Commit

Permalink
adding issue 9210 to shared issues (#11701)
Browse files Browse the repository at this point in the history
* adding issue to shared issues

* adding issue instructions

Co-authored-by: Samantha Houts <samhouts@users.noreply.github.com>

fixes #9210
  • Loading branch information
mjmostachetti committed Aug 26, 2020
1 parent 1eae946 commit 9174c7a
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
using Xamarin.Forms.CustomAttributes;
using Xamarin.Forms.Internals;

namespace Xamarin.Forms.Controls.Issues
{
[Preserve(AllMembers = true)]
[Issue(IssueTracker.Github, 9210, "[Bug] iOS keyboard case flickers when switching entries", PlatformAffected.iOS)]
public class Issue9210 : TestContentPage
{
const string IssueInstructions = "1) Tap into one of the Entries.\n2) Tap into the other Entry.\n3) If things are working, the keyboard should not flicker.";

protected override void Init()
{
var stackLayout = new StackLayout();
stackLayout.Children.Add(new Label() { Text = IssueInstructions });
stackLayout.Children.Add(new Entry() { Text="Some demo text." });
stackLayout.Children.Add(new Entry() { Text = "Some other demo text." });

Content = stackLayout;
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -1472,6 +1472,7 @@
<Compile Include="$(MSBuildThisFileDirectory)Issue11430.cs" />
<Compile Include="$(MSBuildThisFileDirectory)Issue11247.cs" />
<Compile Include="$(MSBuildThisFileDirectory)Issue10608.cs" />
<Compile Include="$(MSBuildThisFileDirectory)Issue9210.cs" />
<Compile Include="$(MSBuildThisFileDirectory)Issue11865.cs" />
<Compile Include="$(MSBuildThisFileDirectory)Issue11653.xaml.cs" />
<Compile Include="$(MSBuildThisFileDirectory)Issue11869.cs" />
Expand Down

0 comments on commit 9174c7a

Please sign in to comment.