Skip to content

Instantly share code, notes, and snippets.

@adellibovi
Last active June 7, 2019 21:27
Show Gist options
  • Select an option

  • Save adellibovi/759271fd2d8a2ec5c38f6200f046cd93 to your computer and use it in GitHub Desktop.

Select an option

Save adellibovi/759271fd2d8a2ec5c38f6200f046cd93 to your computer and use it in GitHub Desktop.
@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