EditableTableBody constructor
const
EditableTableBody({
- Key? key,
- required List<
RowEntity> bodyEntity, - bool removable = false,
- required double rowWidth,
- Border? rowBorder,
- TextStyle? cellTextStyle,
- EdgeInsetsGeometry? cellContentPadding,
- TextStyle? cellHintTextStyle,
- EdgeInsetsGeometry? cellInputDecorationContentPadding,
- InputBorder? cellInputDecorationBorder,
- InputBorder? cellInputDecorationFocusBorder,
- Widget? removeRowIcon,
- EdgeInsetsGeometry? removeRowIconPadding,
- Alignment? removeRowIconAlignment,
- Color? removeRowIconContainerBackgroundColor,
- AutovalidateMode? formFieldAutoValidateMode,
- bool readOnly = false,
- ValueChanged<
RowEntity> ? onRowRemoved, - TableFiledFilled? onFilling,
- TableFiledFilled? onSubmitted,
Implementation
const EditableTableBody({
Key? key,
required this.bodyEntity,
this.removable = false,
required this.rowWidth,
this.rowBorder,
this.cellTextStyle,
this.cellContentPadding,
this.cellHintTextStyle,
this.cellInputDecorationContentPadding,
this.cellInputDecorationBorder,
this.cellInputDecorationFocusBorder,
this.removeRowIcon,
this.removeRowIconPadding,
this.removeRowIconAlignment,
this.removeRowIconContainerBackgroundColor,
this.formFieldAutoValidateMode,
this.readOnly = false,
this.onRowRemoved,
this.onFilling,
this.onSubmitted,
}) : super(key: key);