Getting started
General
npm i @ngx-fast-forms/coreUI Libraries
<aff-form-group [formGroup]="form"></aff-form-group>export class ExampleComponent {
public form!: FastFormGroup;
constructor(private formService: FastFormsService) {
this.form = formService.createDynamicForm([{
id: 'first-input',
type: 'input', // depends on used ui component library or use the one registered by yourself
label: 'Example input'
}, {
id: 'second-input',
type: 'input',
label: 'Second input'
}]);
}
}
Last updated