我在表单下有一个视图。当我输入文本字段时,视图卡在键盘顶部。
有问题的代码:
// other stuff
Form {
Section {
TextField("Enter your desired username", text: $page.username)
}
Section {
Button(action: createUser) {
Label("Sign Up", systemImage: "person.crop.circle.badge.plus")
}
}
}
// this is getting stuck on top of keyboard
Group {
Text("By signing up you agree to")
// other stuff
}
它看起来像什么:
如您所见,“通过注册...”视图卡在键盘顶部。我怀疑它与菜单有关。
我该如何摆脱它?