FormTableLayout constructor

const FormTableLayout({
  1. Key? key,
  2. required List<FormField> rows,
  3. double? spacing,
})

Creates a FormTableLayout.

Parameters:

  • rows (List<FormField>, required): Form fields to arrange in rows.
  • spacing (double?, optional): Custom row spacing.

Implementation

const FormTableLayout({super.key, required this.rows, this.spacing});