Created
January 9, 2021 09:56
-
-
Save dllewellyn/d674a674a5a410b6d9102e7413b464e2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
HStack(alignment: .center, spacing: nil) { | |
VStack(alignment: .leading, spacing: nil) { | |
Text(title) | |
.font(.title) | |
Text(subtitle) | |
.font(.subheadline) | |
} | |
Spacer() | |
Image(imageUrl) | |
.resizable() | |
.frame(width: 50, height: 50, alignment: .center) | |
} | |
.padding() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment