summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/CustomKeyboard.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Core/CustomKeyboard.cs')
-rw-r--r--Xamarin.Forms.Core/CustomKeyboard.cs10
1 files changed, 7 insertions, 3 deletions
diff --git a/Xamarin.Forms.Core/CustomKeyboard.cs b/Xamarin.Forms.Core/CustomKeyboard.cs
index 422198cc..daf0d241 100644
--- a/Xamarin.Forms.Core/CustomKeyboard.cs
+++ b/Xamarin.Forms.Core/CustomKeyboard.cs
@@ -1,12 +1,16 @@
-namespace Xamarin.Forms
+using System.ComponentModel;
+
+namespace Xamarin.Forms.Internals
{
- internal sealed class CustomKeyboard : Keyboard
+ public sealed class CustomKeyboard : Keyboard
{
internal CustomKeyboard(KeyboardFlags flags)
{
Flags = flags;
}
- internal KeyboardFlags Flags { get; private set; }
+
+ [EditorBrowsable(EditorBrowsableState.Never)]
+ public KeyboardFlags Flags { get; private set; }
}
} \ No newline at end of file