Last updated 2 years ago
โฌ๏ธ ้่ฆ๏ผ UpArrowShape
struct UpArrow: View { var color: Color = .secondary var body: some View { UpArrowShape() // ๐ UpArrowShape .stroke(lineWidth: 1) .foregroundColor(color) } }
once used by HeightDimension.
uses UpArrowShape.
Thinking in SwiftUI โฉ Ch.4 Layout โฉ Grid Views โญ๏ธ