答案 0 :(得分:6)
您可以通过更改占位符文本的字体大小来更改文本大小,这会自动调整TextField
的高度。
在您的情况下,这看起来与您要的内容非常相似:
HStack {
Group {
TextField($str, placeholder: Text("A"))
TextField($str, placeholder: Text("B"))
TextField($str, placeholder: Text("C"))
TextField($str, placeholder: Text("D"))
}
.frame(width: 60, height: nil)
.padding(.all, 5)
.textFieldStyle(.roundedBorder)
.font(Font.system(size: 60, design: .default))
.multilineTextAlignment(.center)
}