Implement TextView
@State var text = ""
TextView($text)
.tag(0)
.background(.purple)
.color(.white)
.tint(.red)
.placeholder("Placeholder title")
.corners(4)
.inputAccessoryView { SomeAccessoryView() }
.height(88)
@State var text = ""
TextView($text)
.tag(0)
.background(.purple)
.color(.white)
.tint(.red)
.placeholder("Placeholder title")
.corners(4)
.inputAccessoryView { SomeAccessoryView() }
.height(88)