mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-02-01 02:53:03 +08:00
docs(keyboard): add platforms supported
This commit is contained in:
parent
292c80c735
commit
74690d1622
@ -30,24 +30,34 @@ export class Keyboard {
|
||||
console.log("hideKeyboardAccessoryBar method has been removed temporarily.")
|
||||
}
|
||||
|
||||
/**
|
||||
* Force keyboard to be shown.
|
||||
* @platforms ['Android','BlackBerry 10','Windows']
|
||||
*/
|
||||
@Cordova({
|
||||
sync: true
|
||||
})
|
||||
static show() : void {}
|
||||
|
||||
/**
|
||||
* Close the keyboard if open
|
||||
* @platforms ['iOS','Android','BlackBerry 10','Windows']
|
||||
*/
|
||||
@Cordova({
|
||||
sync: true
|
||||
})
|
||||
static close() : void {}
|
||||
|
||||
/**
|
||||
* Prevents the native UIScrollView from moving when an input is focused.
|
||||
* @platforms ['iOS','Windows']
|
||||
* @param disable
|
||||
*/
|
||||
@Cordova({
|
||||
sync: true
|
||||
})
|
||||
static disableScroll(disable : boolean) : void {}
|
||||
|
||||
@Cordova({
|
||||
sync: true
|
||||
})
|
||||
static show() : void {}
|
||||
|
||||
// TODO add event listener
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user