I have wrapped a UITextView in a UIViewRepresentable and included a Coordinator as UITextViewDelegate, but the events are
UITextView
UIViewRepresentable
Coordinator
UITextViewDelegate
You have to add textView.delegate = context.coordinator to makeUIView to register the coordinator to receive updates from UITextView.
textView.delegate = context.coordinator
makeUIView