Created
May 19, 2020 14:47
-
-
Save nrlnishan/8e09305ac76983ef4afa76ed55cf4ae0 to your computer and use it in GitHub Desktop.
Property Wrapper in Swift - 1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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