Hello
Currently I’m facing a problem where I tried to setFocus on ion-textarea
I can see the cursor in textarea but its just a blink
anybody can help me
here is the code
post-detail.ts
//...other codes
@ViewChild('myTextArea') textarea: TextInput;
//...other codes
setFocus() {
this.textarea.setFocus();
}
post-detail.html
//...other codes
<ion-textarea #myTextArea></ion-textarea>
//...other codes