macosui / macos_window_utils.dart

macos_window_utils is a Flutter package that provides a set of methods for modifying the NSWindow of a Flutter application on macOS.
https://pub.dev/packages/macos_window_utils
MIT License
49 stars 9 forks source link

Resolve minimum deployment version inconsistency #2

Closed Adrian-Samoticha closed 1 year ago

Adrian-Samoticha commented 1 year ago

According to the README.md file, the macOS Deployment Target needs to be set to 10.13 or above:

Now press ⇧ + ⌘ + O once more and search for Runner.xcodeproj. Go to info > Deployment Target and set the macOS Deployment Target to 10.13 or above.

However, in the Podfile, of the example project, the first line reads as follows:

platform :osx, '10.14.6' # IMPORTANT: Make sure this is set to 10.14.6 or above!

There is no mention of this in the README.md file. This could cause confusion for users trying to implement this plugin into their projects.