mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
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:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user