pub fn DynamicForm(props: DynamicFormProps) -> impl IntoViewExpand description
Renders a form from a list of FormFields, maintaining the collected values as a
JSON object. Emits the object through on_change on every edit and, when an
on_submit callback is provided, shows a submit button labelled submit_label.
§Required Props
- fields:
Vec<FormField>
§Optional Props
- on_change:
Callback<Value> - on_submit:
Callback<Value> - submit_label:
impl Into<String>