NXT-8190: Fixed VirtualList to be responsive while resizing window#3382
Merged
ion-andrusciac-lgp merged 8 commits intodevelopfrom Feb 5, 2026
Merged
NXT-8190: Fixed VirtualList to be responsive while resizing window#3382ion-andrusciac-lgp merged 8 commits intodevelopfrom
ion-andrusciac-lgp merged 8 commits intodevelopfrom
Conversation
Enact-DCO-1.0-Signed-off-by: Jiye Kim (jiye.kim@lge.com)
Enact-DCO-1.0-Signed-off-by: Jiye Kim (jiye.kim@lge.com)
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## develop #3382 +/- ##
===========================================
+ Coverage 83.24% 83.38% +0.14%
===========================================
Files 154 154
Lines 7258 7320 +62
Branches 1919 1945 +26
===========================================
+ Hits 6042 6104 +62
Misses 956 956
Partials 260 260 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Enact-DCO-1.0-Signed-off-by: Jiye Kim (jiye.kim@lge.com)
Enact-DCO-1.0-Signed-off-by: Jiye Kim (jiye.kim@lge.com)
Enact-DCO-1.0-Signed-off-by: Jiye Kim (jiye.kim@lge.com)
Enact-DCO-1.0-Signed-off-by: Jiye Kim (jiye.kim@lge.com)
ion-andrusciac-lgp
approved these changes
Jan 30, 2026
Enact-DCO-1.0-Signed-off-by: Jiye Kim (jiye.kim@lge.com)
This was referenced Feb 6, 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.
Checklist
Issue Resolved / Feature Added
VirtualList items are not resized properly before reloading the app.
Resolution
but different because itemSize is Number type, immutable.
I want to change itemSize value in useScroll like mutable value, so applied
useStateto itemSize.So I scaled each child of itemSizes but this doesn't require useState because itemSizes is Object type, mutable.
So I made "originalItemSize" state and if originalItemSize is different with new item size, change the itemSize state.
Additional Considerations
https://github.com/enactjs/limestone/pull/297 resolves the issue on the (sample) app side.
Links
NXT-8190
Comments
Enact-DCO-1.0-Signed-off-by: Jiye Kim (jiye.kim@lge.com)