showOverlay static method
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!);
}