Last active
June 7, 2019 21:27
-
-
Save adellibovi/759271fd2d8a2ec5c38f6200f046cd93 to your computer and use it in GitHub Desktop.
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
| @propertyDelegate | |
| struct State<T> { | |
| var value: T { | |
| get { | |
| // Return internal storage | |
| } | |
| set { | |
| // Set internal storage | |
| // Trigger SwiftUI render enginge | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment