We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e12f9d commit 3daafe8Copy full SHA for 3daafe8
lib/src/window_manager.dart
@@ -121,6 +121,8 @@ class WindowManager {
121
if (options?.alwaysOnTop != null)
122
await setAlwaysOnTop(options!.alwaysOnTop!);
123
if (options?.fullScreen != null) await setFullScreen(options!.fullScreen!);
124
+ if (options?.backgroundColor != null)
125
+ await setBackgroundColor(options!.backgroundColor!);
126
if (options?.skipTaskbar != null)
127
await setSkipTaskbar(options!.skipTaskbar!);
128
if (options?.title != null) await setTitle(options!.title!);
0 commit comments