Skip to content

Instantly share code, notes, and snippets.

@hmlongco
Created June 19, 2022 21:08
Show Gist options
  • Save hmlongco/70a52bb62531856069718b5c79cf9fdd to your computer and use it in GitHub Desktop.
Save hmlongco/70a52bb62531856069718b5c79cf9fdd to your computer and use it in GitHub Desktop.
Builder: NameValueView
struct NameValueView: ViewBuilder {
let name: String?
let value: String?
var body: View {
HStackView {
LabelView(name)
.color(.secondaryLabel)
SpacerView()
LabelView(value)
.alignment(.right)
}
.spacing(4)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment