1
struct TarotCard: View {
2
var body: some View {
3
ZStack {
4
// 神秘背景
5
RoundedRectangle(cornerRadius: 24)
6
.fill(Color.lavender)
7
.shadow(radius: 10)
8
// 卡牌图标
9
Image(systemName: "sparkles")
10
.font(.largeTitle)
11
.foregroundColor(.white)
12
}
13
}
14
}