Currently working on a KMP/UI library. Any though...
# library-development
j
Currently working on a KMP/UI library. Any thoughts? https://github.com/lightningkite/rock One thing I'm questioning in the current implementation is the use of
value class
es to wrap HTML elements, as it is increasing the binary size. However, using
actual
typealiases yields problems because there are multiple semantic elements in the library that correspond to the same variant of
HTMLElement
, resulting in function clashes in the `actual`s. If anyone has a solution to that I'd love to know!