showCustomWidgetWithComponentDataOver method
Widget
showCustomWidgetWithComponentDataOver(
- BuildContext context,
- ComponentData componentData
inherited
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();
}