enableFullSizeContentView static method

Future<void> enableFullSizeContentView()

Enables the window's full-size content view.

This expands the area that Flutter can draw to to fill the entire window. It is recommended to enable the full-size content view when making the titlebar transparent. This method is only available on macOS.

Implementation

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