Minimal Kotlin Multiplatform project with SwiftUI, Jetpack Compose, Wear Compose, Compose for Desktop, Compose for Web and Kotlin/JS + React clients along with Ktor backend.
Find a file
2020-11-19 18:56:53 +00:00
.github/workflows add building of web app 2020-09-08 21:21:47 +01:00
app Compose: refactor to plass down lambada for popBack 2020-11-19 18:56:53 +00:00
backend kotlin 1.4 2020-08-30 09:37:51 +01:00
buildSrc updated to 1.4.1-native-mt version of kotlinx coroutines + use stateIn 2020-11-19 16:17:40 +00:00
common updated to 1.4.1-native-mt version of kotlinx coroutines + use stateIn 2020-11-19 16:17:40 +00:00
compose-desktop Jetpack Compose for desktop client 2020-11-17 17:00:35 +00:00
gradle/wrapper 4.2.0-alpha15 2020-10-28 17:43:30 +00:00
ios/PeopleInSpaceSwiftUI scope updates 2020-11-01 17:31:51 +00:00
macOS/PeopleInSpace scope updates 2020-11-01 17:31:51 +00:00
watchos/PeopleInSpaceWatch scope updates 2020-11-01 17:31:51 +00:00
web web gradle cleanup 2020-09-17 18:29:43 +01:00
.gitignore Removed file that shouldn't be tracked 2020-09-06 16:19:54 +01:00
build.gradle.kts misc build updates 2020-10-28 21:22:44 +00:00
gradle.properties update to kotlin 1.4.10 + other dependency updates 2020-09-10 17:30:00 +01:00
gradlew Update gradle to 6.5.1 2020-07-21 12:11:41 +02:00
gradlew.bat Update gradle to 6.5.1 2020-07-21 12:11:41 +02:00
LICENSE add Apache-2 license 2020-10-12 20:22:08 +01:00
README.md Jetpack Compose for desktop client 2020-11-17 17:00:35 +00:00
settings.gradle.kts Jetpack Compose for desktop client 2020-11-17 17:00:35 +00:00

PeopleInSpace

Minimal Kotlin Multiplatform project using Jetpack Compose and SwiftUI. Currently running on

  • Android (Jetpack Compose)
  • iOS (SwiftUI)
  • watchOS (SwiftUI)
  • macOS (SwiftUI)
  • Desktop (Jetpack Compose for Desktop)
  • Web (Kotlin/JS + React Wrapper)
  • JVM (small Ktor back end service)

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:

Note that this repository very much errs on the side of mimimalism 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 v4.2 (currently preview/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 currently need to use EAP version of kotlin plugin and also use appropriate JVM when running (works for example with Java 11)

Languages, libraries and tools used