-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Implement OnScrollEndDrag Event Handler for ScrollView #14473
base: main
Are you sure you want to change the base?
Conversation
@sharath2727 Can you fill out |
@@ -248,6 +248,9 @@ export default class Bootstrap extends React.Component<{}, any> { | |||
horizontal={this.state.horizontalValue} | |||
onScrollBeginDrag={() => { | |||
console.log('onScrollBeginDrag'); | |||
}} | |||
onScrollEndDrag={() => { |
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.
looks like some formatting issue, did you try "yarn format"?
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.
yarn lint:fix fixed it.
Description
Type of Change
Enhancement (non-breaking change)
Why
Implement OnScrollEndDrag Event Handler for fabric implementation of ScrollView.
Resolves #13143
What
For reference: https://learn.microsoft.com/en-us/uwp/api/windows.ui.composition.interactions.interactiontracker?view=winrt-26100
Testing
Updated the ScrollViewSnapSample.tsx to include onScrollEndDrag event handler and verified the console prints onScrollEndDrag when interaction with scroller stops and lnertia state enters.
Optional: Used playground-composition.sln and metro server to test my changes.
Changelog
yes
Add a brief summary of the change to use in the release notes for the next release.
Microsoft Reviewers: Open in CodeFlow