Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/sindresorhus/swift-snippets

Various nifty Swift snippets and playgrounds I have created
https://github.com/sindresorhus/swift-snippets

snippets swift swift-playgrounds

Last synced: 3 days ago
JSON representation

Various nifty Swift snippets and playgrounds I have created

Awesome Lists containing this project

README

        

# Swift snippets

> Various nifty Swift snippets and playgrounds I have created

## [macOS Dark Mode handling](DarkMode.playground/Contents.swift)

```swift
print(DarkMode.isEnabled)

DarkMode.onChange = { isEnabled in
print("Is dark mode enabled?", isEnabled)
}
```

Playground: `DarkMode.playground` *(Clone the repo and double-click this file)*