Details |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 15747 |
anikendra |
1 |
#import <Cordova/CDVPlugin.h>
|
|
|
2 |
|
|
|
3 |
@interface IonicKeyboard : CDVPlugin <UIScrollViewDelegate> {
|
|
|
4 |
@protected
|
|
|
5 |
id _keyboardShowObserver, _keyboardHideObserver;
|
|
|
6 |
}
|
|
|
7 |
|
|
|
8 |
@property (readwrite, assign) BOOL hideKeyboardAccessoryBar;
|
|
|
9 |
@property (readwrite, assign) BOOL disableScroll;
|
|
|
10 |
//@property (readwrite, assign) BOOL styleDark;
|
|
|
11 |
|
|
|
12 |
@end
|
|
|
13 |
|