2020-02-05a few seconds read (About 36 words)How to make round border in SwiftUIIssue #597 12345678TextView(font: R.font.text!, lineCount: nil, text: $text, isFocus: $isFocus).padding(8).background(R.color.inputBackground).cornerRadius(10).overlay( RoundedRectangle(cornerRadius: 10) .stroke(isFocus ? R.color.inputBorderFocus : Color.clear, lineWidth: 1))#swiftswiftUI