As a newcomer to React Native, I am currently working on developing an Ecommerce application. For the backend, I am using Woocommerce (Wordpress) and trying to integrate the Woocommerce API response into my React Native App. However, I am facing an issue with parsing the JSON data, specifically with regards to handling the images array in a flatlist. The code snippet and API response are provided below, and it's worth noting that item.images[0].src
is not functioning as expected.
Thank you for your help.
Woocommerce API Response
{
"id": 794,
...
My APP.js Code
import React, { Component } from 'react';
...