onFormLoaded property

(void Function(FormData)?) onFormLoaded
final

Callback after FormData loads successfully

Use this to modify the UI Displaying the Form

ActiveGridForm(
  id: [YOUR_FORM_ID],
  onFormLoaded: (data) {
    setState(() {
      title = data.title;
    });
  }
),

Implementation

final void Function(FormData)? onFormLoaded;