Only one character in the textarea

Hi! I use Framework7 with Cordova. The problem is that I can not enter the text in the textarea completely. It only happens on IOS (on the simulator and on a real device).

When text is entered from the keyboard, only the first character of the entered text is displayed in the textarea

If hide the keyboard and show it again, the first character of the entered text is placed ahead of the previous text. But again only the first character is placed in the textarea

Maybe someone had a similar problem?

I resolved it. The index.css file has rules that prohibit the selection of text:

{
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}

For this reason, text was not entered in the textarea. I added in index.css file

textarea{
-webkit-user-select: text !important;
-khtml-user-select: text !important;
-moz-user-select: text !important;
-ms-user-select: text !important;
user-select: text !important;
}

to fix it