Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
SwiftUIPT-Ep1-G1
var body: some View {
HStack(spacing: 30.0) {
Image("man")
.frame(width: 60.0, height: 60.0)
VStack {
Text("John Doe")
Text("Attorney at law")
Text("Berkley Ltd.")
}
}
.padding([.leading, .trailing], 12.0)
.padding([.top, .bottom], 24.0)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment