diff --git a/packages/react-native-web/src/exports/TextInput/index.js b/packages/react-native-web/src/exports/TextInput/index.js index 8073cc6c7..1a0cf24d0 100644 --- a/packages/react-native-web/src/exports/TextInput/index.js +++ b/packages/react-native-web/src/exports/TextInput/index.js @@ -296,7 +296,7 @@ const TextInput: React.AbstractComponent< onSubmitEditing(e); } if (shouldBlurOnSubmit && hostNode != null) { - hostNode.blur(); + setTimeout(() => hostNode.blur(), 0); } } }