wrapOverlay method

  1. @protected
Widget wrapOverlay(
  1. BuildContext anchorContext,
  2. Widget overlayChild
)

Lets subclasses wrap overlay content with inherited dependencies captured from the anchor subtree (for example, a custom theme).

Implementation

@protected
Widget wrapOverlay(BuildContext anchorContext, Widget overlayChild) {
  return overlayChild;
}