Skip to content

Instantly share code, notes, and snippets.

@d-srd
Created September 20, 2019 06:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save d-srd/d56f6f2aee1c6fdea60f6cbcfa9d1490 to your computer and use it in GitHub Desktop.
Save d-srd/d56f6f2aee1c6fdea60f6cbcfa9d1490 to your computer and use it in GitHub Desktop.
struct UserInputView: View {
@ObservedObject var user: User
var body: some View {
VStack {
Text(user.name)
Text(user.surname)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment