One of the reasons I'm hesitant to use KVision ins...
# kvision
s
One of the reasons I'm hesitant to use KVision instead of something like react is just how many nice libraries that React has for UI components etc. I'm curious if there is a solution to this, i.e. if KVision plays nicely with other UI frameworks.
r
You can use React UI components with KVision as well. But you need to write your own Kotlin language bindings for them.
s
your own Kotlin language bindings for them.
By this you mean external declarations?
r
Yes
s
This is expected. Dukat has fallen woefully short. 😞
You can even put kvision component into react component embedded in kvision app ;)
s
that might be helpful. What can we expect with the KVision bundle sizes?
s
Is there any approach recommended for lazy loading?
r
Unfortunately Kotlin/JS doesn't support lazy loading.
s
I don't know anything about lazy loading anyways 😛
r
When using Kotin/JS for the UI of your web application you have more or less three choices: 1. build your app with basic html - no external declarations but also no advanced components 2. write externals, be happy with components, maintain the externals, update packages, fix bugs, update, fix, update, fix ... 😉 3. use KVision 🙂
s
I'm curious how KVision will compare with Compose JS Canvas
I get TornadoFX vibes while looking at the KVision samples
The KVision showcase performs really well. The password forms don't play nicely with my password manager. I'm assuming that's because the field is being changed reactively behind the scenes.
462 Views