Robert on Nostr: would be interesting to try to backport NDK to Kotlin Multiplatform leveraging the ...
would be interesting to try to backport NDK to Kotlin Multiplatform leveraging the Kotlin/JS IR compiler
https://kotlinlang.org/docs/js-ir-compiler.html
we need more Kotlin Multiplatform libs here
- Flutter and React Native are good choices early for a project, because of speed
- You can't beat native, shared UI is a nightmare
- Horrible dev ux when you need to work with the native platforms (iOS/macOS/Android)
Kotlin Multiplatform solves all of the above:
- share code gradually, share Business Logic first
- share UI with Compose Multiplatform (if you want)
- leverage native animations and everything that the native platforms give you by default
- way better interoperability across platforms then with Flutter or React/Native
https://kotlinlang.org/docs/js-ir-compiler.html
we need more Kotlin Multiplatform libs here
- Flutter and React Native are good choices early for a project, because of speed
- You can't beat native, shared UI is a nightmare
- Horrible dev ux when you need to work with the native platforms (iOS/macOS/Android)
Kotlin Multiplatform solves all of the above:
- share code gradually, share Business Logic first
- share UI with Compose Multiplatform (if you want)
- leverage native animations and everything that the native platforms give you by default
- way better interoperability across platforms then with Flutter or React/Native