React Native Keyboard Manager Versions Save

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

6.5.11-2

10 months ago

Changes

  • Add jest mock

6.5.11-1

1 year ago

Changes

  • Rewrite the index.js to index.ts and automate declaration files generation
  • Add source maps to the compiled files
  • Add config and dot files to npmignore

6.5.11-0

1 year ago

Changes

  • Update IQKeyboardManagerSwift to 6.5.11

6.5.4-6

1 year ago

Changes

  • Fixes return types (#99)

6.5.4-5

1 year ago

Changes

  • Improve types for PreviousNextView (#97)

6.5.4-4

2 years ago

Changes

  • Fix native imports to work with Expo SDK 44 (#86)

6.5.4-3

2 years ago

Changes

6.5.4-2

2 years ago

Changes

  • Fix types #80
  • Fix podspec #77

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