defaultTreeRowExtentBuilder static method
- TreeSliverNode<
Object?> node, - SliverLayoutDimensions dimensions
Returns the fixed default extent for rows in the tree, which is 40 pixels.
Used by TreeSliver.treeRowExtentBuilder.
Implementation
static double defaultTreeRowExtentBuilder(
TreeSliverNode<Object?> node,
SliverLayoutDimensions dimensions,
) {
return _kDefaultRowExtent;
}