Is there a way to combine kotlin multiplatform and...
# multiplatform
m
Is there a way to combine kotlin multiplatform and kotlin multiplatform mobile to use compose to create an app for all desktop and mobile platforms?
l
You should be able to use compose in a source set shared by android, jvm, and iOS right now. I’ve only tested it with android and iOS, but it seems to work fine.
Note that if you include iOS, #compose-ios only supports parts of compose. To see what is supported, look here. Anything that isn’t set to ComposePlatforms.JVM_BASED is usable in iOS.
👀 2