-
Notifications
You must be signed in to change notification settings - Fork 2
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
Fix juddering on Android #2
Comments
Hey solved it yet? |
I am having this issue on Android. @Tommigun1980 I might try to fix it... do you have any pointers to help me start? |
The problem here is, that in the MessagesPanel_PanUpdate handler in DragView.xaml.cs the panning of the panel is handled via total movement. These numbers are provided by the PanUpdatedEventArgs. At least in the Android emulator these total values mean total values since last event raised, which is more like a delta. So delta is handled twice which leads to the mentioned problem. If you just take the total value as delta, it works smoothly:
No idea what this means on iOS. Maybe you need a switch here. |
Fix juddering when dragging the pane on Androids.
The text was updated successfully, but these errors were encountered: