hi! I'm trying to create an application for Androi...
# multiplatform
c
hi! I'm trying to create an application for Android, iOS and Web with compose multiplatform I created a starting project with the web wizard but when I launch the web app running
./gradlew wasmJsBrowserDevelopmentRun
I can't right click on the web to inspect it I found this issue, and I think this web page has the same problem https://passaporteaupair.com/ because I can't right click on it to inspect Does anyone know why this happens and how I can fix it? I didn't find any information, and from what I read here it should be possible https://kotlinlang.org/docs/wasm-debugging.html#debug-your-kotlin-wasm-application
c
1. this is the wrong channel to ask #CJLTWPH7S questions. 2. Learn how compose for web renders the composable. Hint: look for „canvas“ 3. there are keyboard shortcuts to open the developer console - Google is your friend.
Oh, and to answer your question why you can’t right click. Lost probably because compose for web consumes the right click to forward it to its composable.
c
Well, this is indeed a
multiplatform
question (it's about Compose Multiplatform targeting WebAssembly). I included links to the documentation showing I’ve already Google about it. If you have any constructive insights beyond telling me to Google, I’d appreciate it. Thanks for the helpful attitude, really making the community welcoming@Chrimaeon
c
The documentation you listet is Kotlin multiplatform. You have issues with Compose multiplatform.
And the channel for Compose multiplatform is indeed #CJLTWPH7S
👌🏽 1
c
The documentation you listet is Kotlin multiplatform. You have issues with Compose multiplatform.
Likewise, I left the question on that channel to see if I have better luck, thanks
c
Yes, but it doesn't help much, I left the documentation, according to which, in a new project the right click should work
c
The documentaion is wrong or outdated. It can be the nature of compose not open the browsers context menu.
Also in this documentation
> Alternatively, you can use the F12 shortcut or select View | Developer | Developer Tools.
c
Yes, with F12 I can inspect the page, what I needed to know is if I had something misconfigured in my build, because now I have unexpected behavior with the right click, but I don't know if there are other behaviors that I'm not seeing right now. Since it is a new project, I thought it would work as in the documentation. But for now it's not critical, thank you very much for your answers