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.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/Xamarin.Forms.Core/CustomKeyboard.cs b/Xamarin.Forms.Core/CustomKeyboard.cs
new file mode 100644
index 00000000..422198cc
--- /dev/null
+++ b/Xamarin.Forms.Core/CustomKeyboard.cs
@@ -0,0 +1,12 @@
+namespace Xamarin.Forms
+{
+ internal sealed class CustomKeyboard : Keyboard
+ {
+ internal CustomKeyboard(KeyboardFlags flags)
+ {
+ Flags = flags;
+ }
+
+ internal KeyboardFlags Flags { get; private set; }
+ }
+} \ No newline at end of file