cellWidget method

Widget cellWidget(
  1. BuildContext context
)

Implementation

Widget cellWidget(BuildContext context) {
  return GestureDetector(
    child: _cellContainer(context),
    onTap: () {
      if (null != this.onTapCell) {
        this.onTapCell!(section: this.section, row: this.row);
      }
    },
    onLongPress: () {
      if (null != this.onLongPressCell) {
        this.onLongPressCell!(section: this.section, row: this.row);
      }
    },
    onDoubleTap: () {
      if (null != this.onDoubleTapCell) {
        this.onDoubleTapCell!(section: this.section, row: this.row);
      }
    },
  );
}