ss-android-keyboard-adjust
v1.0.0
Published
Change the input mode for the Android keyboard in a React Native app.
Downloads
2
Maintainers
Readme
ss-android-keyboard-adjust
Change the input mode for the Android keyboard in a React Native app.
If you are having issues with the default keyboard screen adjust modes and need an easy way to instantly switch them in your app. Quickly go from Pan
to Resize
to Nothing
to get the screen displayed perfectly with the keyboard.
Adjust Nothing Example
Adjust Resize Example
Installation instructions for Android
Install the package
npm install --save ss-android-keyboard-adjust
Update android/app/build.gradle
Add compile project(":ss-android-keyboard-adjust")
to dependencies:
dependencies {
...
implementation project(":ss-android-keyboard-adjust")
...
}
Update android/settings.gradle
...
include ':ss-android-keyboard-adjust'
project(':ss-android-keyboard-adjust').projectDir = new File(settingsDir, '../node_modules/ss-android-keyboard-adjust/android')
...
Example
import AndroidKeyboardAdjust from 'ss-android-keyboard-adjust';
AndroidKeyboardAdjust.setAdjustNothing();
AndroidKeyboardAdjust.setAdjustPan();
AndroidKeyboardAdjust.setAdjustResize();
AndroidKeyboardAdjust.setAdjustUnspecified();
AndroidKeyboardAdjust.setAlwaysVisible();
AndroidKeyboardAdjust.setAlwaysHidden();
AndroidKeyboardAdjust.setVisible();
AndroidKeyboardAdjust.setHidden();
AndroidKeyboardAdjust.setUnchanged();