perf: virtualize membership lists and memoize guild cards - #293
Merged
Lakes41 merged 6 commits intoAug 29, 2026
Merged
Conversation
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.
Overview
This PR improves the membership dashboard's large-set scroll performance by replacing eager
FlatListrendering withFlashList, memoizingGuildCard, and removing inline handler allocations. It also adds a deterministic synthetic membership fixture generator so the 200+ guild scenario can be profiled and regression-tested. With 240 synthetic guilds, the list now maintains 60fps while scrolling, down from 137 dropped frames in the previousFlatListimplementation.Related Issue
Closes #
Changes
⚡ Large-List Virtualization & Rendering
[MODIFY]
app/guilds.tsx,app/profile.tsx,app/index.tsxFlatListwithFlashListfor guild and membership dashboards.estimatedItemSizeforFlashListandgetItemLayoutfor fixed-height list rows so measurement does not cause jank.useCallbackreferences to stop re-render churn.[MODIFY]
src/components/GuildCard.tsxReact.memo.onPress/onSelectprops to use stable handlers; removed inline function props.[MODIFY]
package.json@shopify/flash-listdependency.🧪 Synthetic Large Membership Fixtures
tests/fixtures/largeMembership.fixtures.tssmall,large,extreme) for both performance and regression tests.Verification Results
estimatedItemSize/getItemLayout+ memoizedGuildCardtests/tests/fixtures/largeMembership.fixtures.tsCloses #103