Skip to content
Advertisement

Reading multiple objects, in a single object, with in an array, with unique keys. into FlatList

I am trying to display this data in a FlatList.

JavaScript

My data looks like this, its multiple objects in a single object within an array, and each object has multiple unique Ids how can I read the data.

My FlatList code

JavaScript

Here the problem is, FlatList is considering the main object and not the children, how can I access and render the children in a Flatlist and how can I access the unique Id.

Advertisement

Answer

you can loop over, every single element, and then. de-structure it and combine the key with the body.

JavaScript

then you can you this data in FlatList

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement