Skip to content

Instantly share code, notes, and snippets.

@theblixguy
Created October 15, 2019 13:17
Show Gist options
  • Save theblixguy/3c01ec711f9de2dd8413e2bef6c8f4d2 to your computer and use it in GitHub Desktop.
Save theblixguy/3c01ec711f9de2dd8413e2bef6c8f4d2 to your computer and use it in GitHub Desktop.
// Full implementation skipped for brevity
private func createCardView() -> some View {
let backgroundColor = AppColor.cardBackground
return HStack(alignment: .top, spacing: 16) {
createContainer()
Spacer()
createAvatarContainer()
}.frame(height: 135)
.background(backgroundColor)
.cornerRadius(10)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment