Hello everyone, I'm relatively new to Ionic development and I've been trying to integrate a keyboard plugin into my application that opens from the footer and focuses on input fields for entering values. Here is the link to the plugin I used:
https://gist.github.com/Manduro/bc121fd39f21558df2a952b39e907754
Below is how I called it in my HTML page:
<ion-content #content>
<ion-item no-padding>
<ion-label floating>Name (*) </ion-label>
<ion-input #txtGroupName type="text" [(ngModel)]="client.name"></ion-input>
<ion-footer no-padding no-margin class="custom-footer" [keyboardAttach]="content">
<button ion-button full no-padding no-margin (click)="onClickAddClientContact()">CREATE</button>
</ion-footer>
However, when running the code above, I encountered an error stating ERROR Error: Uncaught (in promise): Error: No provider for Keyboard!
Does anyone have any suggestions on how to resolve this issue?