standard constant

DetailVisibility const standard

Standard visibility preset - shows nodes with ports and connections.

Use this at medium zoom levels where you can see the structure but don't need fine details like labels.

Visible: Node content, ports, connection lines, connection endpoints Hidden: Port labels, connection labels, resize handles

Implementation

static const DetailVisibility standard = DetailVisibility(
  showNodeContent: true,
  showPorts: false,
  showPortLabels: false,
  showConnectionLines: true,
  showConnectionLabels: false,
  showConnectionEndpoints: true,
  showResizeHandles: false,
);