我想创建一个视图,它有一个下面有一个按钮的表单。如果我包含一个表单和一个按钮,则该按钮会转到屏幕底部。
这只是一个 SwiftUI 错误吗?还是我做错了什么?
//
// TestFile.swift
// searchparty
//
// Created by Me
//
import SwiftUI
struct TestFile: View {
var body: some View {
VStack {
Form{
Text("Hello, World!")
}
Button("Button") {
print("Button tapped!")
}
}
}
}
struct TestFile_Previews: PreviewProvider {
static var previews: some View {
TestFile()
}
}