spacer static method

TFormField spacer([
  1. double height = 16
])

Creates a spacer form field with a specified height, excluded from form valuation and validation.

Implementation

static TFormField<dynamic> spacer([double height = 16]) {
  return TFormField<dynamic>(
    builder: (_) => SizedBox(height: height),
  );
}