We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff9f2e5 commit 7ba4461Copy full SHA for 7ba4461
packages/uikit-react-native/src/hooks/useKeyboardStatus.ts
@@ -39,12 +39,12 @@ const useKeyboardStatus = () => {
39
setKeyboardStatus({ visible: true, height, bottomSpace });
40
}),
41
42
- Keyboard.addListener(hideEvent, (event) => {
+ Keyboard.addListener(hideEvent, () => {
43
const height = 0;
44
const bottomSpace = Platform.select({ default: height });
45
- const nextLayoutAnimation = Platform.select({ ios: configureNextLayoutAnimation, default: NOOP });
+ // const nextLayoutAnimation = Platform.select({ ios: configureNextLayoutAnimation, default: NOOP });
46
47
- nextLayoutAnimation(event);
+ // nextLayoutAnimation(event);
48
setKeyboardStatus({ visible: false, height, bottomSpace });
49
50
];
0 commit comments