// 2. 元件
struct IconTextField: View {
// local properties
var icon : String // icon name for SF Symbols
var title: String // placeholder text for TextField
// property from parent view
@Binding var text: String // text in TextField
// body of this component
var body: some View {
HStack {
Image(systemName: icon)
TextField(title, text: $text)
.textFieldStyle(RoundedBorderTextFieldStyle()) // ⭐️ TextFieldStyle
}
}
}