ExceptionsManager.js:179 A VirtualizedList contains a cell which itself contains more than one VirtualizedList of the same orientation as the parent list. You must pass a unique listKey prop to each sibling list. code example
Example: A VirtualizedList contains a cell which itself contains more than one VirtualizedList of the same orientation as the parent list. You must pass a unique listKey prop to each sibling list.
<FlatList
data={orders}
listKey={(item) => item.tracking_code.toString()}
keyExtractor={(item) => item.tracking_code.toString()}
renderItem={renderLatestOrder}
ListEmptyComponent={<Empty message="No Latest Order found." />}
/>