Skip to content

Commit

Permalink
Pass hitSlop into usePressability
Browse files Browse the repository at this point in the history
Summary:
`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: 7f59122f19093c93aea612f2c70432e58922469e
  • Loading branch information
el1t authored and facebook-github-bot committed Aug 8, 2023
1 parent 93d9248 commit 9f601e4
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1380,6 +1380,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 @@ -1394,6 +1395,7 @@ function InternalTextInput(props: Props): React.Node {
}),
[
props.editable,
props.hitSlop,
props.onPressIn,
props.onPressOut,
props.rejectResponderTermination,
Expand Down

0 comments on commit 9f601e4

Please sign in to comment.