Expose forceNonDeterministicRendering
as a prop
#1593
WillsonHaw
started this conversation in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Is there a reason to have
forceNonDeterministicRendering
forced on here? We have a custom react reconciler that renders to a WebGL renderer, and it can't determine the height of elements until it's done a render pass, which is done as a scheduled job. The FlashList however will assume the item lengths to be 0, which puts all elements on the screen and causes all elements to render. DisablingforceNonDeterministicRendering
makes everything work, but we can't access the prop. If we could allow that prop to be set on the FlashList, then that would resolve the issue for us.Beta Was this translation helpful? Give feedback.
All reactions