removeOverlayEntry static method
void
removeOverlayEntry()
Implementation
static void removeOverlayEntry() {
OverlayEntry? overlayEntry = ApplicationDraggableManager.overlayEntry;
overlayEntry?.remove(); // 删除重新绘制
ApplicationDraggableManager.overlayEntry = null;
ApplicationDraggableManager._overlayEntryIsShow = false;
_updateShowState(false);
}