updating text inside TextEditor via code - Xcode swift

31 views Asked by At

I'm trying to update the text inside TextEditor via code with no luck and i can't find any examples - Xcode swift

basically I would like to create a scrollable multiline log that can be

  1. highlighted and copy
  2. have clickable hyper links
 TextEditor(text: $textE)
                    .textFieldStyle(.roundedBorder)
textE = textE + "\n" + textToUpdate2
0

There are 0 answers