Created
December 9, 2019 20:29
-
-
Save mmuszynski/531c3873ac2891be6142c43b229c2708 to your computer and use it in GitHub Desktop.
This file contains 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 { | |
VStack(alignment: .leading) { | |
HStack(alignment: .center) { | |
SVGImageView(image: awayLogoController.logo!) | |
.frame(width: 1.5 * 18, height: 18, alignment: .center) | |
Text(game.awayTeamName) | |
.font(.subheadline) | |
.fontWeight(.semibold) | |
} | |
HStack(alignment: .center) { | |
SVGImageView(image: homeLogoController.logo!) | |
.frame(width: 1.5 * 18, height: 18, alignment: .center) | |
Text(game.homeTeamName) | |
.font(.subheadline) | |
.fontWeight(.semibold) | |
} | |
} | |
VStack { | |
Text(linescore?.awayTeamGoals) | |
Text(linescore?.homeTeamGoals) | |
} | |
Spacer() | |
Text(game.startTime) | |
.font(.callout) | |
} |
Author
mmuszynski
commented
Dec 9, 2019
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment