Drew Carlson
Drew Carlson
@ATizik I've done similar work [here](https://github.com/DrewCarlson/kotlin-mobius) if you want to leverage any of it. Note the internal Mobius design will only work on a single thread with K/N, I have...
@ATizik I did consider coroutines, currently they are not a practical solution here. Kotlin Native does not provide Thread-like APIs, which does introduce some issues but binary compatibility in a...
The file is copied when selected, this is what you are experiencing. https://github.com/coomar2841/android-multipicker-library/issues/29
There are Swift projects using it but none with SwiftUI and they are not ideal for learning. There was a sample but it has been removed, the [iOS project](https://github.com/DrewCarlson/mobius.kt/tree/1ce224a41d51b355cf7d3ef9ad19f7f69a5bbd47/samples/todo) and...
I hope to add a full example app soon with a SwiftUI demo. Until then, here are some useful bits for connecting a MobiusLoop to a SwiftUI View: First add...
https://github.com/DrewCarlson/pokedex-mobiuskt Here is a sample project which includes a SwiftUI and Compose Multiplatform implementation. It still requires some cleanup and a detailed readme, but the important parts are there. Specifically...
Any progress on an approach to take here? I have a case with nested ViewPagers where the inner ViewPager needs to prevent the parent from changing pages if the inner's...
For what it's worth, here are some examples of testing js targets with [mocha](https://github.com/korlibs/klock/blob/2e5751041b3d8d7376611b5abcfc75d46821e551/build.gradle#L69-L117) and [qunit](https://github.com/DrewCarlson/kotlin-mobius/blob/8062263cb746606a4726106cfed2779fd9f98270/build.gradle#L103-L146).
I managed to get Windows working with Travis for another project (see [.travis.yml](https://github.com/DrewCarlson/kotlin-mobius/blob/8062263cb746606a4726106cfed2779fd9f98270/.travis.yml#L24-L37) and a [successful build](https://travis-ci.org/DrewCarlson/kotlin-mobius/builds/448058224)). Note that - `--no-daemon` prevents build/deploy steps from stalling - there is no...
The JDK home path is really the only issue since it will break builds when the Windows image is updated. I will open a PR when I find a better...