You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
7 months ago | |
|---|---|---|
| .vscode | 8 months ago | |
| composeApp | 7 months ago | |
| ecgAlgo | 8 months ago | |
| gradle | 7 months ago | |
| iosApp | 7 months ago | |
| .gitignore | 8 months ago | |
| KMP_UI_Migration_Summary.md | 7 months ago | |
| README.md | 8 months ago | |
| SystemBars_README.md | 7 months ago | |
| build.gradle.kts | 7 months ago | |
| gradle.properties | 8 months ago | |
| gradlew | 8 months ago | |
| gradlew.bat | 8 months ago | |
| settings.gradle.kts | 8 months ago | |
README.md
This is a Kotlin Multiplatform project targeting Android, iOS.
-
/composeAppis for code that will be shared across your Compose Multiplatform applications. It contains several subfolders:commonMainis for code that’s common for all targets.- Other folders are for Kotlin code that will be compiled for only the platform indicated in the folder name.
For example, if you want to use Apple’s CoreCrypto for the iOS part of your Kotlin app,
iosMainwould be the right folder for such calls.
-
/iosAppcontains iOS applications. Even if you’re sharing your UI with Compose Multiplatform, you need this entry point for your iOS app. This is also where you should add SwiftUI code for your project.
Learn more about Kotlin Multiplatform…