showCustomWidgetWithComponentDataOver method

Widget showCustomWidgetWithComponentDataOver(
  1. BuildContext context,
  2. ComponentData componentData
)

Allows you to add any widget to a component.

These widgets will be displayed over all components.

You have ComponentData here so you can customize the widgets to individual component.

Implementation

Widget showCustomWidgetWithComponentDataOver(
  BuildContext context,
  ComponentData componentData,
) {
  return const SizedBox.shrink();
}