Last updated 2 years ago
โฌ๏ธ ้่ฆ๏ผ LeftArrowShape
// 2022.02.13 import SwiftUI struct LeftArrow: View { var color: Color = .secondary var body: some View { LeftArrowShape() // LeftArrowShape .stroke(lineWidth: 1) .foregroundColor(color) } }
LeftArrowShape
uses LeftArrowShape.
is a View.
Thinking in SwiftUI โฉ Ch.4 Layout โฉ Grid Views โญ๏ธ