buildCustom method

  1. @override
Widget buildCustom({
  1. ChildWidgetBuilder? childBuilder,
  2. required BuildContext context,
  3. required JsonWidgetData data,
  4. 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 PopupMenuButton(
    clipBehavior: clipBehavior,
    color: color,
    constraints: constraints,
    elevation: elevation,
    enableFeedback: enableFeedback,
    enabled: enabled,
    icon: icon?.build(
      childBuilder: childBuilder,
      context: context,
    ),
    iconSize: iconSize,
    initialValue: initialValue,
    itemBuilder: itemBuilder,
    key: key,
    offset: offset,
    onCanceled: onCanceled,
    onOpened: onOpened,
    onSelected: onSelected,
    padding: padding,
    position: position ?? PopupMenuPosition.over,
    shadowColor: shadowColor,
    shape: shape,
    splashRadius: splashRadius,
    surfaceTintColor: surfaceTintColor,
    tooltip: tooltip,
    child: child.build(
      childBuilder: childBuilder,
      context: context,
    ),
  );
}