You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Lists I implemented with FlashList are flickering when any state on the screen changes. Just swtiching from FlashList to FlatList fixes the issue. Attaching FlashList (flickering) & FlatList (non-flickering) recordings.
I have the same issue. In my case, I need to update the state because I'm changing the number of columns in the list.
Any ideas on how to improve this?
Current behavior
Lists I implemented with FlashList are flickering when any state on the screen changes. Just swtiching from FlashList to FlatList fixes the issue. Attaching FlashList (flickering) & FlatList (non-flickering) recordings.
Screen.Recording.2023-10-18.at.10.17.43.pm.mov
Screen.Recording.2023-10-18.at.10.19.09.pm.mov
Code of one of the lists
<FlashList
data={dummyInfoData}
keyExtractor={(item, index) => item?.title + index}
renderItem={({item}) => (
)}
ItemSeparatorComponent={item => (
<Spacer
vertical
size={15}
testID={
${testID}.infoTab.spacer
}/>
)}
/>
Platform:
Environment
@shopify/flash-list@^1.5.0
[email protected]
The text was updated successfully, but these errors were encountered: