ashokkumar-hub

Results 2 comments of ashokkumar-hub

Based on my understanding, using markdown-it-katex alone will not render the equation; a React Native component must be utilized.

You can get the postalCode and City using address_components in the response ``` { const zipCode = details?.address_components.find((addressComponent) => addressComponent.types.includes('postal_code'), )?.short_name; const city = details?.address_components.find((addressComponent) => addressComponent.types.includes('locality'), )?.short_name; console.log("zipCode", zipCode)...