buildCustom method
Widget
buildCustom({
- ChildWidgetBuilder? childBuilder,
- required BuildContext context,
- required JsonWidgetData data,
- Key? key,
override
Custom builder that subclasses must override and implement to return the actual Widget to be placed on the tree.
Implementation
@override
Widget buildCustom({
ChildWidgetBuilder? childBuilder,
required BuildContext context,
required JsonWidgetData data,
Key? key,
}) {
final child = getChild(data);
return InteractiveViewer(
alignment: alignment,
// alignPanAxis: @deprecated,
boundaryMargin: boundaryMargin,
clipBehavior: clipBehavior,
constrained: constrained,
interactionEndFrictionCoefficient: interactionEndFrictionCoefficient,
key: key,
maxScale: maxScale,
minScale: minScale,
onInteractionEnd: onInteractionEnd,
onInteractionStart: onInteractionStart,
onInteractionUpdate: onInteractionUpdate,
panAxis: panAxis,
panEnabled: panEnabled,
scaleEnabled: scaleEnabled,
scaleFactor: scaleFactor,
transformationController: transformationController,
child: child.build(
childBuilder: childBuilder,
context: context,
),
);
}