2019-10-05a few seconds read (About 41 words)How to style NSTextView and NSTextField in macOSIssue #443 12let textField = NSTextField()textField.focusRingType = .none 12345678let textView = NSTextView()textView.insertionPointColor = R.color.carettextView.isRichText = falsetextView.importsGraphics = falsetextView.isEditable = truetextView.isSelectable = truetextView.drawsBackground = falsetextView.allowsUndo = true#swiftmacOS