Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ivangodfather/a39572f53ecdee8f46291c8b2ae95620 to your computer and use it in GitHub Desktop.
Save ivangodfather/a39572f53ecdee8f46291c8b2ae95620 to your computer and use it in GitHub Desktop.
struct MyView: View {
@State var name = ""
init(..., name: String = "") {
self.name = name // Error
// In some cases i want to provide a name and assign it to my @State.
}
var body: some View {
TextField("Placeholder text", $name). // I don't want a placeholder here if a name is != ""
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment