I have been getting the:
\"VirtualizedList: missing keys for items, make sure to specify a key property on an item or provide a custom keyExtractor\"
i do this and work for me:
keyExtractor={(item, index) => 'key'+index}
@Sarantis Tofas has the correct answer. Solved it for me! Two additional notes based on the comments: