diff --git a/src/Pager.tsx b/src/Pager.tsx index ede4d162..6734f132 100644 --- a/src/Pager.tsx +++ b/src/Pager.tsx @@ -621,7 +621,9 @@ export default class Pager extends React.Component< this.interactionHandle = InteractionManager.createInteractionHandle(); if (keyboardDismissMode === 'auto') { - const input = TextInput.State.currentlyFocusedField(); + const input = TextInput.State.currentlyFocusedInput + ? TextInput.State.currentlyFocusedInput() + : TextInput.State.currentlyFocusedField(); // When a gesture begins, blur the currently focused input TextInput.State.blurTextInput(input);