fix: ScreenFooter - correct initial opacity for animationType 'none' (Android touch blocking) - #4035
Merged
lidord-wix merged 2 commits intoJul 29, 2026
Conversation
…(Android touch blocking) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Contributor
✅ PR Description Validation PassedAll required sections are properly filled out:
Your PR is good for review! 🚀 This validation ensures all sections from the PR template are properly filled. |
lidord-wix
approved these changes
Jul 29, 2026
Yoavpagir
pushed a commit
that referenced
this pull request
Jul 29, 2026
…(Android touch blocking) (#4035)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Fix
ScreenFooterblocking touches on Android whenanimationType='none'(oranimationDuration=0).When
animationTypeis'none', the animated shared value was incorrectly initialized to0, causing the footer's opacity to be0on the first render frame whilepointerEventswas still'auto'. This made the footer invisible but still intercept all touches within its bounds (position absolute, full width, bottom of screen, zIndex 50) — resulting in list items and other content behind the footer not responding to taps on Android.Root cause: the initial value check only accounted for
'fade', not'none', even though both types use opacity-based animation.Related: #4009, #4019
Changelog
ScreenFooter - fix Android touch blocking when
animationType='none'Additional info
useAnimatedStyle— that was the cause of the regression in ScreenFooter - with animationType 'none' #4009useEffectstill drives the value1→0whenvisiblebecomesfalse