showCustomWidgetsOnCanvasForeground method

List<Widget> showCustomWidgetsOnCanvasForeground(
  1. BuildContext context
)

Allows you to add any widget to the canvas.

The widgets will be displayed over all components and links.

Recommendation: use Positioned as the root widget.

Implementation

List<Widget> showCustomWidgetsOnCanvasForeground(BuildContext context) {
  return [];
}