Skip to content

Commit ab4fdb8

Browse files
build(deps): Bump win32 from 5.9.0 to 5.11.0 (#1704)
* build(deps): Bump win32 from 5.9.0 to 5.11.0 Bumps [win32](https://github.com/halildurmus/win32) from 5.9.0 to 5.11.0. - [Release notes](https://github.com/halildurmus/win32/releases) - [Commits](halildurmus/win32@v5.9.0...v5.11.0) --- updated-dependencies: - dependency-name: win32 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> * fix warning --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: bin <[email protected]>
1 parent 3073b84 commit ab4fdb8

File tree

3 files changed

+6
-12
lines changed

3 files changed

+6
-12
lines changed

lib/utils/system/system_utils.dart

+3-9
Original file line numberDiff line numberDiff line change
@@ -31,19 +31,13 @@ Future<void> setSystemUiWithAppBrightness(Brightness brightness) async {
3131
if (isWindows10OrGreater()) {
3232
final isDarkMode = malloc<BOOL>()
3333
..value = brightness == Brightness.dark ? 1 : 0;
34-
DwmSetWindowAttribute(
35-
windowHandle,
36-
DWMWINDOWATTRIBUTE.DWMWA_USE_IMMERSIVE_DARK_MODE,
37-
isDarkMode,
38-
sizeOf<BOOL>());
34+
DwmSetWindowAttribute(windowHandle, DWMWA_USE_IMMERSIVE_DARK_MODE,
35+
isDarkMode, sizeOf<BOOL>());
3936
malloc.free(isDarkMode);
4037

4138
final captionColor = malloc<COLORREF>()
4239
..value = brightness == Brightness.dark ? 0x2C3136 : 0xFFFFFF;
43-
DwmSetWindowAttribute(
44-
windowHandle,
45-
DWMWINDOWATTRIBUTE.DWMWA_CAPTION_COLOR,
46-
captionColor,
40+
DwmSetWindowAttribute(windowHandle, DWMWA_CAPTION_COLOR, captionColor,
4741
sizeOf<COLORREF>());
4842
malloc.free(captionColor);
4943
}

pubspec.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -2316,10 +2316,10 @@ packages:
23162316
dependency: "direct main"
23172317
description:
23182318
name: win32
2319-
sha256: "8b338d4486ab3fbc0ba0db9f9b4f5239b6697fcee427939a40e720cbb9ee0a69"
2319+
sha256: b89e6e24d1454e149ab20fbb225af58660f0c0bf4475544650700d8e2da54aef
23202320
url: "https://pub.dev"
23212321
source: hosted
2322-
version: "5.9.0"
2322+
version: "5.11.0"
23232323
win32_registry:
23242324
dependency: transitive
23252325
description:

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ dependencies:
141141
watcher: ^1.1.1
142142
web_socket_channel: ^3.0.1
143143
webview_flutter: ^4.8.0
144-
win32: ^5.7.1
144+
win32: ^5.11.0
145145
win_toast: ^0.3.1
146146
window_manager: ^0.4.3
147147
window_size:

0 commit comments

Comments
 (0)