Skip to content

Instantly share code, notes, and snippets.

@mhdhejazi
Last active April 27, 2020 09:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mhdhejazi/27d5d6da8a84f665cc6381998868b622 to your computer and use it in GitHub Desktop.
Save mhdhejazi/27d5d6da8a84f665cc6381998868b622 to your computer and use it in GitHub Desktop.
Enter fullscreen in a Mac Catalyst app with the help of Dynamic (https://github.com/mhdhejazi/Dynamic)
// macOS App
NSApplication.shared
.windows.first?
.toggleFullScreen(nil)
// Mac Catalyst (with Dynamic)
Dynamic.NSApplication.sharedApplication
.windows.firstObject
.toggleFullScreen(nil)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment