-
Notifications
You must be signed in to change notification settings - Fork 1.2k
[Fabric] Implement snapToAlignment property for ScrollView #14841
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
Open
anupriya13
wants to merge
5
commits into
main
Choose a base branch
from
user/anuverma/snapToAlignment
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
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
…ure (#14830) * Initial plan * Implement snapToAlignment support for Fabric ScrollView - interface and prop handling Co-authored-by: anupriya13 <54227869+anupriya13@users.noreply.github.com> * Add test support and UI for snapToAlignment in ScrollView Fabric implementation Co-authored-by: anupriya13 <54227869+anupriya13@users.noreply.github.com> * Remove unnecessary changes from vnext/codegen files Co-authored-by: anupriya13 <54227869+anupriya13@users.noreply.github.com> * Change files * Run yarn change prerelease, yarn lint:fix, and yarn format as requested Co-authored-by: anupriya13 <54227869+anupriya13@users.noreply.github.com> * Remove all changes from vnext/codegen files as requested Co-authored-by: anupriya13 <54227869+anupriya13@users.noreply.github.com> * Remove XAML dependency from IDL by defining local SnapAlignment enum Co-authored-by: anupriya13 <54227869+anupriya13@users.noreply.github.com> * Extract snap alignment conversion into separate function for better readability Co-authored-by: anupriya13 <54227869+anupriya13@users.noreply.github.com> * Revert changes to ScrollViewExample.js as requested Co-authored-by: anupriya13 <54227869+anupriya13@users.noreply.github.com> * Revert changes to ScrollViewComponentTest.test.ts as requested Co-authored-by: anupriya13 <54227869+anupriya13@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: anupriya13 <54227869+anupriya13@users.noreply.github.com>
509e4ca
to
f87e92f
Compare
satkh
reviewed
Jul 8, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please add a video recording, displaying how this prop works.
vnext/Microsoft.ReactNative/Fabric/Composition/ScrollViewComponentView.cpp
Outdated
Show resolved
Hide resolved
vnext/Microsoft.ReactNative/Fabric/Composition/ScrollViewComponentView.cpp
Outdated
Show resolved
Hide resolved
vnext/Microsoft.ReactNative/Fabric/Composition/CompositionContextHelper.cpp
Show resolved
Hide resolved
vnext/Microsoft.ReactNative/Fabric/Composition/CompositionContextHelper.cpp
Outdated
Show resolved
Hide resolved
vnext/Microsoft.ReactNative/Fabric/Composition/CompositionContextHelper.cpp
Outdated
Show resolved
Hide resolved
vnext/Microsoft.ReactNative/Fabric/Composition/ScrollViewComponentView.cpp
Show resolved
Hide resolved
Add this case to scrollview/samples |
It's already added
|
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
Type of Change
Why
Implement snapToAlignment property for ScrollView in Fabric
Resolves #13148
What
Implement snapToAlignment property for ScrollView in Fabric

https://reactnative.dev/docs/scrollview#snaptoalignment
Background
The
snapToAlignment
property was available in RNW Paper via ScrollViewManager but missing from the Fabric implementation, causing a parity gap between the two architectures.Screenshots
Recording.2025-07-09.122123.mp4
Testing
Tested in playground and e2etestappfabric already added
Changes
Core Implementation
CompositionSwitcher.idl
to acceptsnapToAlignment
parameterScrollViewComponentView.cpp
with proper enum conversion from React Native to Windows typesConfigureSnapInertiaModifiers()
to adjust snap positions based on alignment:"start"
(Near): No adjustment - content snaps at natural positions"center"
(Center): Offsets positions by half viewport size - content centers in viewport"end"
(Far): Offsets positions by full viewport size - content aligns to end of viewportEnum Mapping
Changelog
Should this change be included in the release notes: YES
Add a brief summary of the change to use in the release notes for the next release.
Implement snapToAlignment property for ScrollView in Fabric
Microsoft Reviewers: Open in CodeFlow