Giter VIP home page Giter VIP logo

react-native-set-soft-input-mode's Introduction

react-native-set-soft-input-mode

setSoftInputMode on Android.

Installation

Download:

Run npm i react-native-set-soft-input-mode --save

Plugin Installation:

  1. In your android/settings.gradle file, make the following additions:
include ':react-native-set-soft-input-mode'
project(':react-native-set-soft-input-mode').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-set-soft-input-mode/android')
  1. In your android/app/build.gradle file, add the :react-native-set-soft-input-mode project as a compile-time dependency:
...
dependencies {
    ...
    compile project(':react-native-set-soft-input-mode')
}
  1. Update the MainApplication.java file to use react-native-set-soft-input-mode via the following changes:
import io.github.mr03web.softinputmodemodule.SoftInputModePackage;

public class MainApplication extends Application implements ReactApplication {

    private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) {
        @Override
        protected boolean getUseDeveloperSupport() {
            return BuildConfig.DEBUG;
        }

        @Override
        protected List<ReactPackage> getPackages() {
            return Arrays.<ReactPackage>asList(
              new MainReactPackage(),
              new SoftInputModePackage()  // here
            );
        }
    };

    ...
}

Usage:

Import react-native-set-soft-input-mode in your JS file.

Use like so:

import SoftInputMode from 'react-native-set-soft-input-mode';

export default class Page extends Component {

  componentDidMount() {
    SoftInputMode.set(SoftInputMode.ADJUST_RESIZE);
  }

}

Options:

Name Description
ADJUST_NOTHING SOFT_INPUT_ADJUST_NOTHING
ADJUST_PAN SOFT_INPUT_ADJUST_PAN
ADJUST_RESIZE SOFT_INPUT_ADJUST_RESIZE
ADJUST_UNSPECIFIED SOFT_INPUT_ADJUST_UNSPECIFIED

react-native-set-soft-input-mode's People

Contributors

mr03web avatar

Watchers

 avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.