NiceFormBuilder constructor

const NiceFormBuilder({
  1. Key? key,
  2. required List<NiceFormRow> rows,
  3. Map<String, dynamic>? values,
  4. void onChanged(
    1. Map<String, dynamic> values
    )?,
  5. void onSubmit(
    1. Map<String, dynamic> values
    )?,
  6. String? submitLabel,
  7. bool readOnly = false,
  8. int columnsPerRow = 2,
})

Implementation

const NiceFormBuilder({
  super.key,
  required this.rows,
  this.values,
  this.onChanged,
  this.onSubmit,
  this.submitLabel,
  this.readOnly = false,
  this.columnsPerRow = 2,
});