EditableTableRow constructor

const EditableTableRow({
  1. Key? key,
  2. required RowEntity rowEntity,
  3. bool removable = false,
  4. required double rowWidth,
  5. Border? rowBorder,
  6. EdgeInsetsGeometry? cellContentPadding,
  7. EdgeInsetsGeometry? cellInputDecorationContentPadding,
  8. TextStyle? cellHintTextStyle,
  9. InputBorder? cellInputDecorationBorder,
  10. InputBorder? cellInputDecorationFocusBorder,
  11. TextStyle? cellTextStyle,
  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 EditableTableRow({
  Key? key,
  required this.rowEntity,
  this.removable = false,
  required this.rowWidth,
  this.rowBorder,
  this.cellContentPadding,
  this.cellInputDecorationContentPadding,
  this.cellHintTextStyle,
  this.cellInputDecorationBorder,
  this.cellInputDecorationFocusBorder,
  this.cellTextStyle,
  this.removeRowIcon,
  this.removeRowIconPadding,
  this.removeRowIconAlignment,
  this.removeRowIconContainerBackgroundColor,
  this.formFieldAutoValidateMode,
  this.readOnly = false,
  this.onRowRemoved,
  this.onFilling,
  this.onSubmitted,
}) : super(key: key);