Skip to content

Commit f4c46dc

Browse files
committed
Updated IQKeyboardManager to 4.0.13 to fix some bugs with iOS 11.
1 parent 9074e25 commit f4c46dc

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+1115
-1125
lines changed

.yarnignore

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
# OSX
2+
#
3+
.DS_Store
4+
5+
# Xcode
6+
#
7+
build/
8+
*.pbxuser
9+
!default.pbxuser
10+
*.mode1v3
11+
!default.mode1v3
12+
*.mode2v3
13+
!default.mode2v3
14+
*.perspectivev3
15+
!default.perspectivev3
16+
xcuserdata
17+
*.xccheckout
18+
*.moved-aside
19+
DerivedData
20+
*.hmap
21+
*.ipa
22+
*.xcuserstate
23+
project.xcworkspace
24+
25+
# Android/IntelliJ
26+
#
27+
build/
28+
.idea
29+
.gradle
30+
local.properties
31+
*.iml
32+
33+
# node.js
34+
#
35+
node_modules/
36+
npm-debug.log
37+
yarn-error.log
38+
39+
# BUCK
40+
buck-out/
41+
\.buckd/
42+
*.keystore
43+
44+
# fastlane
45+
#
46+
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
47+
# screenshots whenever they are needed.
48+
# For more information about the recommended setup visit:
49+
# https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Gitignore.md
50+
51+
fastlane/report.xml
52+
fastlane/Preview.html
53+
fastlane/screenshots
54+
55+
56+
Sample
57+
__tests__
58+
screenshots

Sample/index.ios.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ KeyboardManager.setPreventShowingBottomBlankSpace(true);
4242
KeyboardManager.setEnableAutoToolbar(true);
4343
KeyboardManager.setToolbarDoneBarButtonItemText("Close");
4444
KeyboardManager.setToolbarManageBehaviour(0);
45-
KeyboardManager.setToolbarPreviousNextButtonEnable(true);
45+
KeyboardManager.setToolbarPreviousNextButtonEnable(false);
4646
KeyboardManager.setShouldToolbarUsesTextFieldTintColor(false);
4747
KeyboardManager.setShouldShowTextFieldPlaceholder(true);
4848
KeyboardManager.setOverrideKeyboardAppearance(false);

Sample/install.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#!/bin/bash
2+
3+
rm -rf node_modules/
4+
rm yarn.lock
5+
yarn install
6+
rm -rf node_modules/react-native-keyboard-manager/Sample/

0 commit comments

Comments
 (0)