rowHeight property

double? rowHeight
final

Height of each row displayed in a table.

When set to null, the height of each row is computed during layout, similar to the Row widget, meaning each row can have different height. Additionally, wrapping the table row widget in the IntrinsicHeight will make all cells as tall as the tallest visible cell.

Prefer setting this value to not-null to increase performance. When it is not possible, consider specifying rowHeightBuilder or rowPrototype to improve the performance instead.

Implementation

final double? rowHeight;