Skip to content

Commit 3782d1a

Browse files
committed
Hide unsupported controls in MAUI project
1 parent 46b24c3 commit 3782d1a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/InputKit.Maui/Shared/Controls/AutoCompleteEntry.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55

66
namespace InputKit.Shared.Controls;
77

8-
public class AutoCompleteEntry : AdvancedEntry
8+
internal class AutoCompleteEntry : AdvancedEntry
99
{
1010
private AutoCompleteView txtInput;
1111

12-
public AutoCompleteEntry()
12+
internal AutoCompleteEntry()
1313
{
1414
// Keep the ctor for linker.
1515
}

src/InputKit.Maui/Shared/Controls/AutoCompleteView.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
namespace InputKit.Shared.Controls;
77

8-
public class AutoCompleteView : Entry
8+
internal class AutoCompleteView : Entry
99
{
1010
private static readonly Func<string, ICollection<string>, ICollection<string>> _defaultSortingAlgorithm = (t, d) => d;
1111

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

33-
public AutoCompleteView()
33+
internal AutoCompleteView()
3434
{
3535
// Keep the ctor for linker.
3636
}

0 commit comments

Comments
 (0)