Smooth package-list scrolling and stop re-parsing SVG icons on every scroll#5051
Merged
Merged
Conversation
4 tasks
Marc-André Moreau (mamoreau-devolutions)
approved these changes
Jul 7, 2026
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.
This pull request introduces two main improvements: smoother DataGrid wheel scrolling and significant performance optimization for SVG icon loading. The new
DataGridWheelAnimatorclass provides a WinUI-like eased scroll experience, and theSvgIconcontrol now memoizes parsed SVGs to avoid redundant parsing and asset loading, greatly improving UI responsiveness during heavy DataGrid usage.UI/UX Improvements:
DataGridWheelAnimatorto enable eased, animated wheel scrolling forDataGrid, replacing the default instant jump with a smoother experience. This is achieved by driving the internal scroll method via reflection and gradually applying the scroll delta. (src/UniGetUI.Avalonia/Views/Controls/DataGridWheelAnimator.cs, src/UniGetUI.Avalonia/Views/Controls/DataGridWheelAnimator.csR1-R65)PackageListin the packages page, so users benefit from the improved scrolling immediately. (src/UniGetUI.Avalonia/Views/SoftwarePages/AbstractPackagesPage.axaml.csPerformance Optimizations:
SvgIconto cache parsed SVGs using a thread-safe dictionary, preventing repeated parsing and asset loading for the same icon URI. This greatly reduces UI thread work and improves scrolling performance when icons are reused. (src/UniGetUI.Avalonia/Views/Controls/SvgIcon.cssrc/UniGetUI.Avalonia/Views/Controls/SvgIcon.cs