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 95b044e commit 35d6b9eCopy full SHA for 35d6b9e
packages/stack/src/views/KeyboardManager.tsx
@@ -35,7 +35,11 @@ export default class KeyboardManager extends React.Component<Props> {
35
36
this.clearKeyboardTimeout();
37
38
- const input = TextInput.State.currentlyFocusedField();
+ // @ts-ignore
39
+ const input = TextInput.State.currentlyFocusedInput
40
+ ? // @ts-ignore
41
+ TextInput.State.currentlyFocusedInput()
42
+ : TextInput.State.currentlyFocusedField();
43
44
// When a page change begins, blur the currently focused input
45
TextInput.State.blurTextInput(input);
0 commit comments