EditableTableBody constructor

const EditableTableBody({
  1. Key? key,
  2. required List<RowEntity> bodyEntity,
  3. bool removable = false,
  4. required double rowWidth,
  5. Border? rowBorder,
  6. TextStyle? cellTextStyle,
  7. EdgeInsetsGeometry? cellContentPadding,
  8. TextStyle? cellHintTextStyle,
  9. EdgeInsetsGeometry? cellInputDecorationContentPadding,
  10. InputBorder? cellInputDecorationBorder,
  11. InputBorder? cellInputDecorationFocusBorder,
  12. Widget? removeRowIcon,
  13. EdgeInsetsGeometry? removeRowIconPadding,
  14. Alignment? removeRowIconAlignment,
  15. Color? removeRowIconContainerBackgroundColor,
  16. AutovalidateMode? formFieldAutoValidateMode,
  17. bool readOnly = false,
  18. ValueChanged<RowEntity>? onRowRemoved,
  19. TableFiledFilled? onFilling,
  20. 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);