Skip to content

Commit 90ef1fe

Browse files
committed
Update README.md
1 parent bbfef6e commit 90ef1fe

File tree

1 file changed

+8
-30
lines changed

1 file changed

+8
-30
lines changed

README.md

+8-30
Original file line numberDiff line numberDiff line change
@@ -43,27 +43,7 @@ Or
4343
npm i -S react-native-keyboard-manager
4444
```
4545

46-
## Auto linking
47-
48-
If you are using `React Native 0.60.+` go to the folder **your-project/ios** and run `pod install`, and you're done.
49-
50-
If not, use one of the following methods to link.
51-
52-
## Link with `react-native link`:
53-
54-
React native link is no longer supported due to cocoapods dependency. To avoid cocoapods you can use the version `4.0.13-X`.
55-
56-
## Link manual with cocoapods:
57-
58-
1. Add this line to your Podfile
59-
```bash
60-
pod 'ReactNativeKeyboardManager', :path => '../node_modules/react-native-keyboard-manager'
61-
```
62-
63-
2. run
64-
```bash
65-
pod install
66-
```
46+
Go to the folder **your-project/ios** and run `pod install`, and you're done.
6747

6848
## Post install
6949

@@ -91,25 +71,23 @@ if (Platform.OS === 'ios') {
9171
KeyboardManager.setKeyboardDistanceFromTextField(10);
9272
KeyboardManager.setLayoutIfNeededOnUpdate(true);
9373
KeyboardManager.setEnableAutoToolbar(true);
74+
KeyboardManager.setToolbarUseTextFieldTintColor('#FF00FF');
9475
KeyboardManager.setToolbarDoneBarButtonItemText("Done");
95-
KeyboardManager.setToolbarManageBehaviourBy("subviews"); // "subviews" | "tag" | "position"
76+
KeyboardManager.setToolbarManageBehavior("subviews"); // "subviews" | "tag" | "position"
9677
KeyboardManager.setToolbarPreviousNextButtonEnable(false);
9778
KeyboardManager.setToolbarTintColor('#0000FF'); // Only #000000 format is supported
9879
KeyboardManager.setToolbarBarTintColor('#FFFFFF'); // Only #000000 format is supported
99-
KeyboardManager.setShouldShowToolbarPlaceholder(true);
100-
KeyboardManager.setOverrideKeyboardAppearance(false);
80+
KeyboardManager.setToolbarShowPlaceholder(true);
81+
KeyboardManager.setKeyboardOverrideAppearance(false);
10182
KeyboardManager.setKeyboardAppearance("default"); // "default" | "light" | "dark"
102-
KeyboardManager.setShouldResignOnTouchOutside(true);
83+
KeyboardManager.setResignOnTouchOutside(true);
10384
KeyboardManager.setShouldPlayInputClicks(true);
10485
KeyboardManager.resignFirstResponder();
105-
KeyboardManager.isKeyboardShowing()
106-
.then((isShowing) => {
107-
// ...
108-
});
86+
KeyboardManager.reloadLayoutIfNeeded();
10987
}
11088
```
11189

112-
For more details, see the [Sample Project](https://github.com/douglasjunior/react-native-keyboard-manager/blob/master/Sample/App.tsx) and the official [IQKeyboardManager documentation](https://github.com/hackiftekhar/IQKeyboardManager/tree/v6.5.4).
90+
For more details, see the [Sample Project](https://github.com/douglasjunior/react-native-keyboard-manager/blob/master/Sample/App.tsx) and the official [IQKeyboardManager documentation](https://github.com/hackiftekhar/IQKeyboardManager/).
11391

11492
### Enable Next/Previous buttons
11593

0 commit comments

Comments
 (0)