isWindowInLiveResize static method

Future<bool> isWindowInLiveResize()

Gets whether the window is currently being resized by the user.

Implementation

static Future<bool> isWindowInLiveResize() async {
  await _completer.future;
  return await _windowManipulatorMethodChannel
      .invokeMethod('isWindowInLiveResize');
}