showCustomWidgetsOnCanvasBackground method

List<Widget> showCustomWidgetsOnCanvasBackground(
  1. BuildContext context
)

Allows you to add any widget to the canvas.

The widgets will be displayed under all components and links.

Recommendation: use Positioned as the root widget.

Implementation

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