Fix list rendering keys and nested list patterns

This commit is contained in:
Adolfo Reyna
2026-02-20 20:13:10 -05:00
parent 487edb4a62
commit d2491800f2
6 changed files with 45 additions and 52 deletions

View File

@@ -49,7 +49,7 @@ let Post = (props) => {
<FlatList data={userIds}
horizontal={true}
renderItem={renderPost}
//keyExtractor={item => item}
keyExtractor={(item, index) => `${item}-${index}`}
/>
</View>
</Card.Content>