OverlayPortal.targetsRootOverlay constructor
- Key? key,
- required OverlayPortalController controller,
- required WidgetBuilder overlayChildBuilder,
- Widget? child,
Creates an OverlayPortal that renders the widget overlayChildBuilder builds on the root Overlay when OverlayPortalController.show is called.
Implementation
const OverlayPortal.targetsRootOverlay({
super.key,
required this.controller,
required this.overlayChildBuilder,
this.child,
}) : _targetRootOverlay = true;