showCustomWidgetWithComponentData method

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

Allows you to add any widget to a component.

These widgets will have the same z-order as this component and will be displayed over this component.

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

Implementation

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