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