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

Implement OnScrollEndDrag Event Handler for ScrollView #14473

Open
wants to merge 4 commits into
base: main
Choose a base branch
from

Conversation

sharath2727
Copy link
Contributor

@sharath2727 sharath2727 commented Apr 2, 2025

Description

Type of Change

Enhancement (non-breaking change)

Why

Implement OnScrollEndDrag Event Handler for fabric implementation of ScrollView.

Resolves #13143

What

  1. Added FireScrollEndDrag handler to be fired when the InteractionTracker state is entering inertia - InertiaStateEntered
  2. Adjusted FireScrollBeginDrag to be fired when the InteractionTracker state is entering the interacting state - InteractingStateEntered method.

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

@sharath2727 sharath2727 requested review from a team as code owners April 2, 2025 14:53
@sharath2727 sharath2727 self-assigned this Apr 2, 2025
@TatianaKapos
Copy link
Contributor

TatianaKapos commented Apr 2, 2025

@sharath2727 Can you fill out "Add a brief summary of the change to use in the release notes for the next release." We use that to create the release notes! Example here: https://github.com/microsoft/react-native-windows/releases/tag/react-native-windows_v0.77.0

@@ -248,6 +248,9 @@ export default class Bootstrap extends React.Component<{}, any> {
horizontal={this.state.horizontalValue}
onScrollBeginDrag={() => {
console.log('onScrollBeginDrag');
}}
onScrollEndDrag={() => {
Copy link
Contributor

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"?

Copy link
Contributor Author

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Implement onScrollEndDrag property for ScrollView for fabric
4 participants