File tree Expand file tree Collapse file tree 5 files changed +13
-4
lines changed Expand file tree Collapse file tree 5 files changed +13
-4
lines changed Original file line number Diff line number Diff line change 1+ ## 1.0.2
2+
3+ - Fix incompatibility with Flutter 3.7.0.
4+
15## 1.0.1
26
37- Add ` setLevel ` method.
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ EXTERNAL SOURCES:
1414 :path: Flutter/ephemeral/.symlinks/plugins/macos_window_utils/macos
1515
1616SPEC CHECKSUMS:
17- FlutterMacOS: ae6af50a8ea7d6103d888583d46bd8328a7e9811
17+ FlutterMacOS: 8f6f14fa908a6fb3fba0cd85dbd81ec4b251fb24
1818 macos_window_utils: 933f91f64805e2eb91a5bd057cf97cd097276663
1919
2020PODFILE CHECKSUM: 500e4707112a5f11963bc198135953cdebb6d50c
Original file line number Diff line number Diff line change 33 archiveVersion = 1;
44 classes = {
55 };
6- objectVersion = 51 ;
6+ objectVersion = 54 ;
77 objects = {
88
99/* Begin PBXAggregateTarget section */
255255/* Begin PBXShellScriptBuildPhase section */
256256 3399D490228B24CF009A79C7 /* ShellScript */ = {
257257 isa = PBXShellScriptBuildPhase;
258+ alwaysOutOfDate = 1;
258259 buildActionMask = 2147483647;
259260 files = (
260261 );
Original file line number Diff line number Diff line change @@ -38,6 +38,10 @@ public class MacOSWindowUtilsViewController: NSViewController {
3838
3939 flutterViewController. view. frame = self . view. bounds
4040 flutterViewController. view. autoresizingMask = [ . width, . height]
41+
42+ // Since Flutter 3.7.0 the FlutterViewController's background is black by default and therefore needs to be set to clear.
43+ flutterViewController. backgroundColor = . clear
44+
4145 self . view. addSubview ( flutterViewController. view)
4246 }
4347
Original file line number Diff line number Diff line change @@ -2,12 +2,12 @@ name: macos_window_utils
22description :
33 macos_window_utils is a Flutter package that provides a set of methods for
44 modifying the NSWindow of a Flutter application on macOS.
5- version : 1.0.1
5+ version : 1.0.2
66repository : https://github.com/Adrian-Samoticha/macos_window_utils.dart
77
88environment :
99 sdk : ' >=2.18.5 <3.0.0'
10- flutter : " >=1.20 .0"
10+ flutter : " >=3.7 .0"
1111
1212dependencies :
1313 flutter :
You can’t perform that action at this time.
0 commit comments