visibleNodes property
Get all currently visible nodes (flattened).
Implementation
List<LayoutNode> get visibleNodes {
final nodes = <LayoutNode>[];
_collectVisibleNodes(root, nodes);
return nodes;
}
Get all currently visible nodes (flattened).
List<LayoutNode> get visibleNodes {
final nodes = <LayoutNode>[];
_collectVisibleNodes(root, nodes);
return nodes;
}