tjvantoll / nativescript-IQKeyboardManager

NativeScript wrapper for the popular IQKeyboardManager iOS framework
MIT License
100 stars 20 forks source link

Use of this extension with nativescript-vue #36

Closed snapxtp closed 6 years ago

snapxtp commented 6 years ago

The plugin works fine. But I could not find out how to change keyboard color or other features My code looks like this and it does not work...

export default { data() { return { iqKeyboard:'' }; }, created() { this.iqKeyboard = IQKeyboardManager.sharedManager(); this.iqKeyboard.keyboardAppearance = UIKeyboardAppearance.Dark; } };