Skip to content

Commit

Permalink
Pass hitSlop prop into TextInput Pressability config (#38857)
Browse files Browse the repository at this point in the history
Summary:
Pull Request resolved: #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
  • Loading branch information
el1t authored and Luna Wei committed Aug 10, 2023
1 parent 2f6c200 commit 768c960
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand All @@ -1361,6 +1362,7 @@ function InternalTextInput(props: Props): React.Node {
}),
[
props.editable,
props.hitSlop,
props.onPressIn,
props.onPressOut,
props.rejectResponderTermination,
Expand Down

0 comments on commit 768c960

Please sign in to comment.