Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there any option to Run Flutter Windows Desktop application in full screen mode

Tags:

flutter

I have tried flutter Windows Desktop application, but I am not able hide title bar to run app in full screen mode windows

like image 398
Yuvaraj M Avatar asked Feb 03 '23 17:02

Yuvaraj M


1 Answers

I guess window_manager can achieve your needs

Installation

Add this to your package's pubspec.yaml file:

 dependencies:
  window_manager: ^0.2.7

Usage


// Enter fullscreen
await WindowManager.instance.setFullScreen(true);
// Level fullscreen
await WindowManager.instance.setFullScreen(false);
like image 142
lijy91 Avatar answered Feb 08 '23 15:02

lijy91