Version casi lista

This commit is contained in:
alexandrev-tibco
2026-02-17 13:34:02 +01:00
commit e593453abd
99 changed files with 10867 additions and 0 deletions
@@ -0,0 +1,16 @@
import SwiftUI
struct MealMoodLogoMark: View {
var size: CGFloat = 120
var body: some View {
Image("AppLogo")
.resizable()
.interpolation(.high)
.scaledToFill()
.frame(width: size, height: size)
.clipShape(RoundedRectangle(cornerRadius: size * 0.22, style: .continuous))
.shadow(color: .black.opacity(0.12), radius: size * 0.08, y: size * 0.04)
.accessibilityHidden(true)
}
}