I want to draw a shape where the bottom side of the border is removed, so we can see the background.
struct SwiftUIView: View {
var body: some View {
Text("Hello World!")
.padding(10.0)
.border(Color.blue, width: 3.0)
.cornerRadius(4.0)
}
}
我不敢做到这一点。 我看着粉碎和沙皮,但并不确切地确定最佳办法是什么。