React Native Keyboard Manager Versions Save

⚛ Library to prevent issues of keyboard sliding up and cover inputs on React-Native iOS projects.

6.5.4-1

3 years ago

Changes

  • Forces to use main queue (fixes #73)

6.5.4-0

3 years ago

Update IQKeyboardManager to version 6.

FEATURES

    KeyboardManager.setEnable(true);
    KeyboardManager.setEnableDebugging(false);
    KeyboardManager.setKeyboardDistanceFromTextField(10);
    KeyboardManager.setEnableAutoToolbar(true);
    KeyboardManager.setToolbarDoneBarButtonItemText("Done");
    KeyboardManager.setToolbarManageBehaviourBy("subviews"); // "subviews" | "tag" | "position"
    KeyboardManager.setToolbarPreviousNextButtonEnable(false);
    KeyboardManager.setToolbarTintColor('#0000FF'); // Only #000000 format is supported
    KeyboardManager.setToolbarBarTintColor('#FFFFFF'); // Only #000000 format is supported
    KeyboardManager.setShouldShowToolbarPlaceholder(true);
    KeyboardManager.setOverrideKeyboardAppearance(false);
    KeyboardManager.setKeyboardAppearance("default"); // "default" | "light" | "dark"
    KeyboardManager.setShouldResignOnTouchOutside(true);
    KeyboardManager.setShouldPlayInputClicks(true);
    KeyboardManager.resignFirstResponder();
    KeyboardManager.isKeyboardShowing()
      .then((isShowing) => {
          // ...
      });

BREAKING CHANGES

For more details: https://github.com/douglasjunior/react-native-keyboard-manager/issues/68

4.0.13-17

3 years ago

Changes

  • Add tint color

6.5.4-alpha.2

3 years ago

Changes

  • Add tint color
  • Fix some Swift imports

6.5.4-alpha.1

3 years ago

6.5.4-alpha.0

3 years ago

Update IQKeyboardManager to 6.5.4.

See how to help with this update at #68.

4.0.13-16

4 years ago

Update README and sample project.

4.0.13-15

4 years ago

Fix support to autolinking.

4.0.13-14

4 years ago

THIS VERSION IS BROKEN, USE THE NEXT VERSION

4.0.13-13

4 years ago
  • Update pod dependency to support react-native 0.60 (#50)