ignoreMouseEvents static method

Future<void> ignoreMouseEvents()

Makes the window ignore mouse events (macOS only).

This method can be used to make parts of the window click-through, which may be desirable when used in conjunction with Window.makeWindowFullyTransparent().

Implementation

static Future<void> ignoreMouseEvents() async {
  WindowManipulator.ignoreMouseEvents();
}