Skip to content

Instantly share code, notes, and snippets.

@Rusti18
Last active October 10, 2022 09:55
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 Rusti18/d354bf073bb4005f1f9dee4a8f0e33cd to your computer and use it in GitHub Desktop.
Save Rusti18/d354bf073bb4005f1f9dee4a8f0e33cd to your computer and use it in GitHub Desktop.
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