반응형
Hacking with Swift 사이트의 강좌 번역본입니다.
[원문 : https://www.hackingwithswift.com/quick-start/swiftui/how-to-add-a-border-to-a-textfield]
How to add a border to a TextField
[동영상 강좌 : https://youtu.be/cPA45hF59Tw]
SwiftUI의 TextField 뷰는 기본적으로 스타일이 없으며, 화면에 빈 공간이 있다는 의미입니다. 원하는 스타일에 맞다면, 훌륭합니다 - 그걸로 끝입니다. 하지만 많은 이들이 텍스트 필드를 명확하게 만들기 위해서 주변에 테두리를 추가하길 원할 것입니다.
UITextField에 익숙한 rounded rect(둥근 사각형) 텍스트 필드 스타일을 원하는 경우에, 다음과 같이 textFieldStyle(RoundedBorderTextfieldStyle())를 사용해야 합니다.
TextField("Enter some text", text: $yourBindingHere)
.textFieldStyle(RoundedBorderTextFieldStyle())
반응형
'SwiftUI > Responding to events' 카테고리의 다른 글
How to create a slider and read values from it (0) | 2019.11.18 |
---|---|
How to disable autocorrect in a TextField (0) | 2019.11.18 |
How to create secure text fields using SecureField (0) | 2019.11.18 |
How to add a placeholder to a TextField (0) | 2019.11.18 |
How to read text from a TextField (0) | 2019.11.18 |
How to disable the overlay color for images inside Button and NavigationLink (0) | 2019.11.18 |
How to create a tappable button (0) | 2019.11.18 |
How to create a toggle switch (0) | 2019.11.18 |