Skip to content

Commit 83f2e59

Browse files
committed
Added Android compatibility to PreviousNextView export.
1 parent 4a9aec6 commit 83f2e59

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

Sample/index.ios.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ class SampleKeyboardManager extends Component {
102102
self.setState(state)
103103
}}
104104
placeholder={ref}
105-
blurOnSubmit={true /* 'false' causes a react-native bug */}
105+
blurOnSubmit={!multiline /* 'false' causes a react-native bug */}
106106
onSubmitEditing={nextFocus}
107107
multiline={multiline}
108108
numberOfLines={multiline ? 10 : 1}
@@ -121,7 +121,7 @@ class SampleKeyboardManager extends Component {
121121

122122
{/* To try with Modal, uncomment the two following lines. */}
123123
{/* <Modal visible={true}> */}
124-
<PreviousNextView style={{ flex: 1 }}>
124+
{/* <PreviousNextView style={{ flex: 1 }}> */}
125125

126126
{/* ScrollView is not required, but may be needed in some cases. */}
127127
<ScrollView>
@@ -139,7 +139,7 @@ class SampleKeyboardManager extends Component {
139139

140140
</ScrollView>
141141

142-
</PreviousNextView>
142+
{/* </PreviousNextView> */}
143143
{/* </Modal> */}
144144

145145
</View>

Sample/yarn.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -3429,7 +3429,7 @@ react-devtools-core@^2.5.0:
34293429
ws "^2.0.3"
34303430

34313431
"react-native-keyboard-manager@file:..":
3432-
version "4.0.13-1"
3432+
version "4.0.13-3"
34333433

34343434
34353435
version "0.48.4"

index.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,11 @@
2323
*/
2424

2525
import {
26-
NativeModules, DeviceEventEmitter, requireNativeComponent,
26+
NativeModules, DeviceEventEmitter, requireNativeComponent, View, Platform,
2727
} from 'react-native';
28+
const { OS } = Platform;
29+
30+
export const PreviousNextView = OS === 'ios' ? requireNativeComponent('RNKMPreviousNextView') : View;
2831

2932
const KeyboardManager = NativeModules.ReactNativeKeyboardManager;
3033
export default KeyboardManager;
31-
32-
export const PreviousNextView = requireNativeComponent('RNKMPreviousNextView');

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-keyboard-manager",
3-
"version": "4.0.13-2",
3+
"version": "4.0.13-3",
44
"description": "Library that allows to prevent issues of keyboard sliding up and cover on React-Native iOS projects. ⚛",
55
"private": false,
66
"repository": {

0 commit comments

Comments
 (0)