Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[iOS] Fabric: Make view touchable when alpha less than 0.01 #50476

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

zhongwuzw
Copy link
Contributor

Summary:

Fixes #50465. Make view touchable when the alpha is less than 0.01, thus keeping it consistent with the old architecture and the behavior on Android/Web.

Changelog:

[IOS] [FIXED] - Fabric: Make view touchable when alpha less than 0.01

Test Plan:

Repro please see #50465

@facebook-github-bot facebook-github-bot added CLA Signed This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed. Shared with Meta Applied via automation to indicate that an Issue or Pull Request has been shared with the team. labels Apr 3, 2025
@@ -621,7 +621,7 @@ - (UIView *)betterHitTest:(CGPoint)point withEvent:(UIEvent *)event
// * Taking `layer.zIndex` field into an account is not required because
// lists of `ShadowView`s are already sorted based on `zIndex` prop.

if (!self.userInteractionEnabled || self.hidden || self.alpha < 0.01) {
if (!self.userInteractionEnabled || self.hidden) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think this is right...
If alpha == 0, we don't want for the view to be interactive. This is also the same behavior in the native platform (opacity == 0, means that the view is not rendered and it is not interactive) and what we want to maintain.

We want interactivity if alpha is > 0.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, in iOS native UIView, it's the default behaviour, but we support interactivity when alpha is 0 in iOS old arch. Also Android and Web support it. Should we need to keep consistency across platforms?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think in this case. In this case the platform should dominate.
One of the best things of React Native is that it gives a native feeling to the user. If we manipulate how the platform behaves, then people will notice when an app is built with React Native vs Native and that something we don't want.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@cipolleschi Hmm, it seems that in iOS we can also set the background color to a clear color, which is not visible to users but responds the touch event. Therefore, for users there is not much difference between setting the alpha to 0 and setting the background color to clear. However, developers must be aware of the differences between iOS and other platforms.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

However, if it is indeed believed that iOS needs to be different. Feel free to close.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
CLA Signed This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed. Shared with Meta Applied via automation to indicate that an Issue or Pull Request has been shared with the team.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[iOS] TextInput and Pressable with opacity: 0 do not receive touch events (React Native 0.76.7)
3 participants