2020-11-27a few seconds read (About 37 words)How to disable NSTextView in SwiftUIIssue #702 The trick is to use an overlay 12345678910MessageTextView(text: $input.message) .overlay(obscure)var obscure: AnyView { if store.pricingPlan.isPro { return EmptyView().erase() } else { return Color.black.opacity(0.01).erase() }}#macOSswiftUI