measureNodeWidth method

double measureNodeWidth(
  1. Node<T> node,
  2. int depth
)

Total width of a single row: indent + own expand strip + tier icon box + measured label + right content padding. Uses baseTextStyle merged with effectiveTextStyle so the measured label matches what is rendered.

Implementation

double measureNodeWidth(Node<T> node, int depth) =>
    _rowWidth(node, depth, _mergedStyle(node));