will jetbrains maybe(!) also target compose for ru...
# compose-desktop
d
will jetbrains maybe(!) also target compose for running inside browser web-apps? (maybe with a matured WASM (https://webassembly.org/)
👍 1
s
#compose-web
💚 1
🙏 1
d
is there a "landing page" or something similar to the compose(-desktop) tutorials for it already?? (or too alpha yet?)
k
No not yet
s
I think is possible to do something with CanvasKit from Skia, I don't know much about it, but, I think should work Also, Flutter does use CanvasKit on web
d
well I don't want to have "something" forced now. Happy to wait until compose-web is ripe for harvest 🙂
will I be able to "reuse" my (non-desktop-non-android-specific ) "@Components" out-of-the-box in compose-web?
p
@SrSouza rendering on a canvas is not a good idea for web, IMO
s
Well, I agree but flutter on web is pretty fast using CanvasKit https://skia.org/user/modules/canvaskit Flutter Renders: https://flutter.dev/docs/development/tools/web-renderers
s
I believe that both have their own advantages: - CanvasKit will allow to reuse skia based components that are already used for Android/Desktop - At the same time, if you only want to build a web application, DOM based components are way more suited for that. Apart from having more benefits of being native to the platform, you can integrate third party components from JS world as well. It is not about the raw speed, but also the integration, accessibility, devx and million more things :)
👍 1