Is there a way to build eureka forms from a json/api response. So far i've been able to convert to json returned to an object. But having issues creating a for loop to generate the form.
form
+++ Section("API Returns")
for values in JSONObject{
<<< TextRow() {
$0.tag = values.key
$0.title = values.name
$0.value = values.value
}
}