Skip to content

Commit

Permalink
Hide unsupported controls in MAUI project
Browse files Browse the repository at this point in the history
enisn committed Aug 28, 2022
1 parent 46b24c3 commit 3782d1a
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/InputKit.Maui/Shared/Controls/AutoCompleteEntry.cs
Original file line number Diff line number Diff line change
@@ -5,11 +5,11 @@

namespace InputKit.Shared.Controls;

public class AutoCompleteEntry : AdvancedEntry
internal class AutoCompleteEntry : AdvancedEntry
{
private AutoCompleteView txtInput;

public AutoCompleteEntry()
internal AutoCompleteEntry()
{
// Keep the ctor for linker.
}
4 changes: 2 additions & 2 deletions src/InputKit.Maui/Shared/Controls/AutoCompleteView.cs
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@

namespace InputKit.Shared.Controls;

public class AutoCompleteView : Entry
internal class AutoCompleteView : Entry
{
private static readonly Func<string, ICollection<string>, ICollection<string>> _defaultSortingAlgorithm = (t, d) => d;

@@ -30,7 +30,7 @@ public class AutoCompleteView : Entry
typeof(AutoCompleteView),
2);

public AutoCompleteView()
internal AutoCompleteView()
{
// Keep the ctor for linker.
}

0 comments on commit 3782d1a

Please sign in to comment.