Good evening everyone I can't understand how Kotl...
# multiplatform
g
Good evening everyone I can't understand how Kotlin Multiplatform works, for example, to create an application. Should I create the logic of my application in the shared folder and write the user interface in their respective folders?
j
g
So if I understood correctly, on cross-platform Kotlin we have to create the logic of the application on the shared folder and implemented the user interface on the respective folder, Kind in the shared folder I write (the logic) and in the desktop folder I have to implement the interface for desktops same for Android but for desktop I have to use kotlin compose and for android it's jetpack compose but for iphone I have to write in swift
f
Compose for iOS is still in Beta/development, you can use it but with some issues and limitation, if your project is really important/critical use SwiftUI or UIKit, if not use Compose
g
Thank you for your answer