SwiftUI TextField 与 Keyboard 合集

TextField

修改 TextField 属性:

1
2
3
4
5
6
// 背景颜色
UITextField.appearance().backgroundColor = UIColor(Color.blue)
// 竖线颜色
UITextField.appearance().tintColor = UIColor(Color.red)
// 还有很多属性,这里不展示了
// Search Bar 也适用

修改 TextField 大小:

1
2
3
TextField("名称", text: $name)
.textFieldStyle(.roundedBorder)
.controlSize(.large) // 单独好像不会生效

Keyboard

关于键盘会上推组件:

掌握 SwiftUI 的 Safe Area


SwiftUI TextField 与 Keyboard 合集
https://wonderhoi.com/2023/10/06/SwiftUI-TextField-与-Keyboard-合集/
作者
wonderhoi
发布于
2023年10月6日
许可协议