RawTableLayout constructor
const
RawTableLayout({
- Key? key,
- List<
Widget> children = const <Widget>[], - required TableSizeSupplier width,
- required TableSizeSupplier height,
- required Clip clipBehavior,
- CellPredicate? frozenColumn,
- CellPredicate? frozenRow,
- double? verticalOffset,
- double? horizontalOffset,
- Size? viewportSize,
Implementation
const RawTableLayout({
super.key,
super.children,
required this.width,
required this.height,
required this.clipBehavior,
this.frozenColumn,
this.frozenRow,
this.verticalOffset,
this.horizontalOffset,
this.viewportSize,
});