0.2.5 • Published 4 years ago

hide-keyboard v0.2.5

Weekly downloads
50
License
MIT
Repository
github
Last release
4 years ago

hide-keyboard

This library is used to keep the keyboard hidden in an Ionic application when the focus is on a input.

Installation

To install this library, run:

$ npm i hide-keyboard

Use library into Ionic Project

Once you have installed, you can import library in any Ionic application by doing:

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';

import { AppComponent } from './app.component';

// Import library
import { HideKeyboardModule } from 'hide-keyboard';

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,

    // Specify library as an import
    HideKeyboardModule
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }

Once your library is imported, you can use its directives in your Ionic application:

<!-- You can now use your library component in app.component.html -->
<ion-input hideKeyboard placeholder="Barcode" name="barcodeField" id="barcodeField" type="text"></ion-input>

License

MIT © Gregory Heyligen

0.2.5

4 years ago

0.2.3

4 years ago

0.2.4

4 years ago

0.2.1

7 years ago

0.2.0

7 years ago

0.1.9

7 years ago

0.1.8

7 years ago

0.1.7

7 years ago

0.1.6

7 years ago

0.1.5

7 years ago

0.1.4

7 years ago

0.1.3

7 years ago

0.1.2

7 years ago

0.1.1

7 years ago

0.1.0

7 years ago