From 3ffb1c2eec50cee802a3b316601930db06cb80e3 Mon Sep 17 00:00:00 2001 From: masonyc Date: Fri, 1 Feb 2019 14:21:37 +1300 Subject: [PATCH 1/3] update readme --- README.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index a600ed6..80eb696 100644 --- a/README.md +++ b/README.md @@ -30,8 +30,8 @@ This effect allows user to show/hide softkeyboard on Android/iOS platform in Xam { base.OnCreate(savedInstanceState); global::Xamarin.Forms.Forms.Init(this, savedInstanceState); - - Xamarin.EnableKeyboardEffect.Droid.Effects.Init(this);//need this line to init effect in android + + Xamarin.EnableKeyboardEffect.Platform.Droid.Effects.Init(this);//need this line to init effect in android LoadApplication(new App()); } @@ -44,8 +44,8 @@ This effect allows user to show/hide softkeyboard on Android/iOS platform in Xam { global::Xamarin.Forms.Forms.Init(); - Xamarin.EnableKeyboardEffect.iOS.Effects.Init();//need this line to init effect in iOS - + Xamarin.EnableKeyboardEffect.Platform.iOS.Effects.Init(); + LoadApplication(new App()); return base.FinishedLaunching(app, options); } @@ -97,6 +97,8 @@ This effect allows user to show/hide softkeyboard on Android/iOS platform in Xam Only support Android and iOS for the moment. +Entry that get focused by calling .Focus() may still cause keyboard not hiding properly. + # Contributing Contributions are welcome. Feel free to file issues and pull requests on the repo and they'll be reviewed as time permits. From c8080d4997f97f095ae56fef2b67fe91f54cd5b2 Mon Sep 17 00:00:00 2001 From: masonyc Date: Fri, 1 Feb 2019 14:23:08 +1300 Subject: [PATCH 2/3] update readme --- README.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 80eb696..3bc845c 100644 --- a/README.md +++ b/README.md @@ -30,8 +30,9 @@ This effect allows user to show/hide softkeyboard on Android/iOS platform in Xam { base.OnCreate(savedInstanceState); global::Xamarin.Forms.Forms.Init(this, savedInstanceState); - - Xamarin.EnableKeyboardEffect.Platform.Droid.Effects.Init(this);//need this line to init effect in android + + //need this line to init effect in android + Xamarin.EnableKeyboardEffect.Platform.Droid.Effects.Init(this); LoadApplication(new App()); } @@ -43,7 +44,8 @@ This effect allows user to show/hide softkeyboard on Android/iOS platform in Xam public override bool FinishedLaunching(UIApplication app, NSDictionary options) { global::Xamarin.Forms.Forms.Init(); - + + //need this line to init effect in iOS Xamarin.EnableKeyboardEffect.Platform.iOS.Effects.Init(); LoadApplication(new App()); @@ -97,7 +99,7 @@ This effect allows user to show/hide softkeyboard on Android/iOS platform in Xam Only support Android and iOS for the moment. -Entry that get focused by calling .Focus() may still cause keyboard not hiding properly. +Note: Entry that get focused by calling .Focus() method may still cause keyboard not hiding properly. # Contributing From 157592b2cb8cc4668be62d2bc45b24db93770916 Mon Sep 17 00:00:00 2001 From: masonyc Date: Fri, 1 Feb 2019 14:27:39 +1300 Subject: [PATCH 3/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3bc845c..cba7aa5 100644 --- a/README.md +++ b/README.md @@ -99,7 +99,7 @@ This effect allows user to show/hide softkeyboard on Android/iOS platform in Xam Only support Android and iOS for the moment. -Note: Entry that get focused by calling .Focus() method may still cause keyboard not hiding properly. +Android note: Entry that get focused by calling .Focus() method may still cause keyboard not hiding properly. # Contributing