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

[UWP] Fixes 8787 Entry text not visible until focus or window resize #11351

Merged
merged 9 commits into from
Jul 20, 2020
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
using Xamarin.Forms.CustomAttributes;
using Xamarin.Forms.Internals;

namespace Xamarin.Forms.Controls.Issues
{
[Preserve(AllMembers = true)]
[Issue(IssueTracker.Github, 11259, "[Bug] UWP ScrollView Entry's text is blank until a tap on it", PlatformAffected.UWP)]
public partial class Issue11259
{
public Issue11259()
{
#if APP
InitializeComponent();
#endif
}
}
}
Loading