Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ionic-keyboard-assist

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ionic-keyboard-assist

![](https://img.shields.io/badge/me-%40gesiel.com-brightgreen) ![](https://img.shields.io/npm/v/ionic-keyboard-assist?label=npm%40latest) ![](https://img.shields.io/bundlephobia/minzip/ionic-keyboard-assist/latest) ![](https://img.shields.io/npm/dm/ionic-

  • 4.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

ionic-keyboard-assist

This wizard corrects the bug when the keyboard overlaps/cover the screen and does not allow it to scroll. The user cannot see what is typing in the field. (Android 9 reported issue)

It is necessary "cordova-plugin-ionic-keyboard" plugin installed.

  • https://github.com/ionic-team/cordova-plugin-ionic-keyboard

Tested in versions:

Ionic: @^4

Keyboard Plugin: cordova-plugin-ionic-keyboard@^2.2.0

iOS: 13

Android: 9

Installation

To install the library:

npm install ionic-keyboard-assist --save

Add the service to your app.module.ts as a provider and set scrollPadding and scrollAssist to false:

import { IonicKeyboardAssist } from 'ionic-keyboard-assist';

@NgModule({
  ...
  IonicModule.forRoot({
    scrollPadding: false,
    scrollAssist: false
  }),
  ...
  providers: [ IonicKeyboardAssist ],
  ...
})
export class AppModule { }

Set KeyboardResize plugin preference to false on config.xml (for iOS): Read more

<preference name="KeyboardResize" value="false" />

Then, import and inject into the app.component.ts constructor and start the service:

import { IonicKeyboardAssist } from 'ionic-keyboard-assist';

constructor(private keyboardAssist: IonicKeyboardAssist ) { 
  this.keyboardAssist.init();
}

Preferences

scrollPadding

Boolean (true by default)

Possible values
  • true: Add a padding-bottom to the screen the same size as the keyboard.
  • false: Does not change the screen padding.

(Depending on the device, the cordova-plugin-ionic-keyboard calculates the wrong height)

scrollAssist

Boolean (true by default)

Possible values
  • true: Position the active/focused field in the center of the screen.
  • false: Does not give assistance to scroll.
Set the configs
...
  this.keyboardAssist.init({scrollPadding: true, scrollAssist: true});
...
or
...
  this.keyboardAssist.setOptions({scrollPadding: true, scrollAssist: true});
...

Keywords

FAQs

Package last updated on 12 May 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc