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
Landry Norris
06/02/2022, 7:57 PM
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.
Landry Norris
06/02/2022, 7:58 PM
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.