我有Button
struct ContentView : View {
var body: some View {
HStack {
Button(action: {}) {
Text("MyButton")
.color(.white)
.font(Font.system(size: 17))
}
.frame(height: 56)
.background(Color.red, cornerRadius: 0)
}
}
}
但我想把它固定在 superview 的边缘(拖到 superview 的尾随和前导)。像这样:
HStack
对我没有帮助,它正在期待。固定frame
或宽度等于UIScree.size
不是灵活的解决方案。