.github/workflows | ||
app | ||
backend | ||
buildSrc | ||
common | ||
compose-desktop | ||
gradle/wrapper | ||
ios/PeopleInSpaceSwiftUI | ||
macOS/PeopleInSpace | ||
watchos/PeopleInSpaceWatch | ||
web | ||
.gitignore | ||
build.gradle.kts | ||
gradle.properties | ||
gradlew | ||
gradlew.bat | ||
LICENSE | ||
README.md | ||
settings.gradle.kts |
PeopleInSpace
Minimal Kotlin Multiplatform project using Jetpack Compose and SwiftUI. Currently running on
- Android (Jetpack Compose)
- iOS (SwiftUI)
- watchOS (SwiftUI)
- macOS (SwiftUI)
- Desktop (Compose for Desktop)
- Web (Kotlin/JS + React Wrapper)
- JVM (small Ktor back end service +
Main.kt
incommon
module)
It makes use of basic API (http://open-notify.org/Open-Notify-API/People-In-Space/) to show list of people currently in space (inspired by https://kousenit.org/2019/12/19/a-few-astronomical-examples-in-kotlin/)! The list is shown on Android using Jetpack Compose, on iOS using SwiftUI and on Web using Kotlin/JS React wrapper.
Related posts:
- Minimal Kotlin Multiplatform project using Compose and SwiftUI
- Adding some Storage (to) Space
- Kotlin Multiplatform running on macOS
- PeopleInSpace hits the web with Kotlin/JS and React
- Using Koin in a Kotlin Multiplatform Project
- Jetpack Compose for the Desktop!
- Comparing use of LiveData and StateFlow in a Jetpack Compose project
- Wrapping Kotlin Flow with Swift Combine Publisher in a Kotlin Multiplatform project
- Using Swift Packages in a Kotlin Multiplatform project
Note that this repository very much errs on the side of minimalism to help more clearly illustrate key moving parts of a Koltin Multiplatform project and also to hopefully help someone just starting to explore KMP to get up and running for first time (and is of course primarily focussed on use of Jetpack Compose and SwiftUI). If you're at stage of moving beyond this then I'd definitely recommend checking out KaMPKit
Building
You need to use Android Studio Canary version. Have tested on XCode v11 and v12. When opening
iOS/watchOS/macOS projects remember to open .xcworkspace
file (and not .xcodeproj
one). To exercise web client run ./gradlew :web:browserDevelopmentRun
.
Jetpack Compose for Desktop client
This client is available in compose-desktop
module. Note that you need to use appropriate version of JVM when running (works for example with Java 11)