show static method

void show({
  1. required Widget child,
})

Shows an overlay with the provided child widget.

The child widget will be displayed as the content of the overlay.

Implementation

static void show({required Widget child}) {
  overlayer = Overlayer.showOverlay(child: child);
}