Pass hitSlop prop into TextInput Pressability config (#38857)

Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/38857

`hitSlop` must be passed into the `usePressability` hook in order for it to take effect. It's a no-op if no hit slop is present

Changelog:
    [Internal][Fixed] - Propagate hit slop prop to TextInput pressability config

Reviewed By: NickGerleman

Differential Revision: D48124538

fbshipit-source-id: a910fdcec55e67d37c84facca297428556ef777e
This commit is contained in:
Ellis Tsung
2023-08-10 10:18:14 -07:00
committed by Luna Wei
parent 2f6c200eff
commit 768c9604a2
@@ -1347,6 +1347,7 @@ function InternalTextInput(props: Props): React.Node {
const config = React.useMemo(
() => ({
hitSlop: props.hitSlop,
onPress: (event: PressEvent) => {
if (props.editable !== false) {
if (inputRef.current != null) {
@@ -1361,6 +1362,7 @@ function InternalTextInput(props: Props): React.Node {
}),
[
props.editable,
props.hitSlop,
props.onPressIn,
props.onPressOut,
props.rejectResponderTermination,