Generate a Flutter form based on JSON Schema and outputs FormData on submit. This is the react version of a live playground.
Here is how the JsonSchemaForm can be constructed where jsonSchema and uiSchema are String:
JsonSchemaForm(
jsonSchema: jsonSchema,
uiSchema: uiSchema,
onFormDataChanged: (String formData) async {
// TODO: Do whatever you want to do with formData
},
);