showOverlay static method

dynamic showOverlay(
  1. BuildContext context
)

Implementation

static showOverlay(BuildContext context) {
  // if (_overlayEntry != null) {
  //   return;
  // }
  //
  // OverlayState? overlayState = Overlay.of(context);
  // _overlayEntry = OverlayEntry(
  //   builder: (context) {
  //     return Positioned(
  //       bottom: MediaQuery.of(context).viewInsets.bottom,
  //       right: 0.0,
  //       left: 0.0,
  //       child: const InputDoneView(),
  //     );
  //   },
  // );
  //
  // overlayState.insert(_overlayEntry!);
}