SwiftUI โฉ view โฉ drawing โฉ shadow โฉ container + shadow
VStack(spacing: 30) { Text("Hello") Image(systemName: "fish") } .foregroundColor(.teal) .border(.teal, width: 3) .background(.white) // 1. container + background color (ๅฆๆๆฒๅ ๏ผ้ๆฏๆ็ข็ๅคๅ้ฐๅฝฑ) .compositingGroup() // 2. compositing group โญ๏ธ .shadow(radius: 3, x: 6, y: 6) // 3. ้ฐๅฝฑ
ChaoCode โฉ ๅจ SwiftUI ไธญๆฟ View ๅ ไธ้ฐๅฝฑ
Last updated 2 months ago
Was this helpful?