Hi,
I used Compose Multiplatform with Kotlin/JS and Kotlin/WASM to build a web app that includes several text fields.
Everything works fine in the browser, but when I used this site in a WebView, I encountered some issues:
1. When focusing on a text field, the page would shift to the right, which shouldn't happen.
2. Then, I switched to BasicTextField2, and in the WebView, I faced a problem where the mobile keyboard wouldn't open.
3. I tried using LocalSoftwareKeyboardController in Compose for Web to open the keyboard when focusing on BasicTextField, but it didn't work.
I'm using Compose 1.7.1 and Kotlin 2.1.
Does anyone have a solution for this?