Getting started

  • Generate dynamic form with JSON
  • Controllers to handle form controls
  • Most common used controls available with dynamic validations

Installing

Add the following to your pubspec.yaml file:

dependencies:
	dynamic_form: ^0.0.1

Usage

Creating AwesomeDynamicForm:

    AwesomeDynamicForm(
        fieldList: fieldList, // List of fields to render
        formControllers: formControllers // List to controllers according to fields controls
    );