留白填充组件
VStack{
// Spacer()
product(title:"Base",price:"$25")
// Spacer()
ZStack{
product(title:"SwiftUI",price:"$50")
Text("Best for designer")
.font(.system(.caption, design: .rounded))
.fontWeight(.bold)
.foregroundColor(.white)
.padding(5)
.background(Color(red: 255/255, green: 183/255, blue: 37/255))
.offset(x:0,y:87)
}
// Spacer()
}