Skip to content

Instantly share code, notes, and snippets.

@daltonclaybrook
Last active July 18, 2019 13:08
Show Gist options
  • Save daltonclaybrook/4655a37a9e1ea2ba87484338c1ac06e3 to your computer and use it in GitHub Desktop.
Save daltonclaybrook/4655a37a9e1ea2ba87484338c1ac06e3 to your computer and use it in GitHub Desktop.
struct SimpleView: View {
let name: String
let caption: String
var body: some View {
VStack(alignment: .leading) {
Text(name).font(.headline)
Text(caption).font(.subheadline)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment