We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 487acd6 commit a167bd8Copy full SHA for a167bd8
src/@ionic-native/plugins/keyboard/index.ts
@@ -1,5 +1,5 @@
1
import { Injectable } from '@angular/core';
2
-import { Cordova, IonicNativePlugin, Plugin } from '@ionic-native/core';
+import { Cordova, CordovaProperty, IonicNativePlugin, Plugin } from '@ionic-native/core';
3
import { Observable } from 'rxjs/Observable';
4
5
/**
@@ -32,6 +32,14 @@ import { Observable } from 'rxjs/Observable';
32
})
33
@Injectable()
34
export class Keyboard extends IonicNativePlugin {
35
+
36
+ /**
37
+ * Check keyboard status visible or not.
38
+ * @returns {boolean}
39
+ */
40
+ @CordovaProperty
41
+ isVisible: boolean;
42
43
44
* Hide the keyboard accessory bar with the next, previous and done buttons.
45
* @param hide {boolean}
0 commit comments