This commit is contained in:
Shadowfacts 2022-06-15 21:59:50 -04:00
parent 6158bdb832
commit 4c76744365
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ The wrapping SwiftUI view is pretty simple. It passes the string binding through
struct ExpandingTextView: View {
@Binding var text: String
let minHeight: CGFloat = 150
@State private var textViewHeight: CGFloat?
@State private var height: CGFloat?
var body: some View {
WrappedTextView(text: $text, textDidChange: self.textDidChange)