Skip to content

Instantly share code, notes, and snippets.

@nrlnishan
Created May 19, 2020 14:47
Show Gist options
  • Select an option

  • Save nrlnishan/8e09305ac76983ef4afa76ed55cf4ae0 to your computer and use it in GitHub Desktop.

Select an option

Save nrlnishan/8e09305ac76983ef4afa76ed55cf4ae0 to your computer and use it in GitHub Desktop.
Property Wrapper in Swift - 1
struct AppSettings {
// Update the respective value in UserDefault
static var isDarkModeEnabled = false {
didSet {
UserDefaults.standard.setValue(isDarkModeEnabled, forKey: "is_dark_mode_enabled")
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment