text (name)
.font(.title3)
170) < /p>
Code: Select all
Text(description)
.font(.caption)
HStack(spacing: 84) {
Text("\(calories) Kcal")
.font(.body)
.fontWeight(.semibold)
Image(systemName: "heart.fill")
.font(.title)
.fontWeight(.semibold)
.foregroundStyle(.my)
}
}
.frame(maxWidth: 227, maxHeight: 349)
.background(.red)
.clipShape(
.rect(
topLeadingRadius: 120,
bottomLeadingRadius: 30,
bottomTrailingRadius: 30,
topTrailingRadius: 120
)
)
.shadow(color: .black.opacity(0.1), radius: 10, y: 4)
.overlay {
Image(.saladAllotment)
.resizable()
.scaledToFit()
.frame(maxWidth: 227)
.padding(.top, -140)
.shadow(color: .black.opacity(0.3), radius: 10, y: 4)
}