TabRow constructor
const
TabRow({
- bool enableDivider = true,
- double? rowDividerHeight,
- double rowDividerWidth = 0.5,
- required List<
int> cellWidget, - required CellItem cellItem,
- double? rowHeight,
- MainAxisAlignment mainAxisAlignment = MainAxisAlignment.start,
- MainAxisSize mainAxisSize = MainAxisSize.max,
- CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.center,
- VerticalDirection verticalDirection = VerticalDirection.down,
- TextDirection? textDirection,
- Color? dividerColor = Colors.red,
- bool fixRowHeight = false,
- Key? key,
Implementation
const TabRow(
{this.enableDivider = true,
this.rowDividerHeight,
this.rowDividerWidth = 0.5,
required this.cellWidget,
required this.cellItem,
this.rowHeight,
this.mainAxisAlignment = MainAxisAlignment.start,
this.mainAxisSize = MainAxisSize.max,
this.crossAxisAlignment = CrossAxisAlignment.center,
this.verticalDirection = VerticalDirection.down,
this.textDirection,
this.dividerColor = Colors.red,
this.fixRowHeight = false,
Key? key})
: super(key: key);