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.
 
 
 
 
Alexey Tsvetkov 1dc5839ed7
Raise error when Homebrew JDK is used for packaging (#3451)
9 months ago
.github Added performance issue template (#3415) 10 months ago
.idea Update copyright notices 3 years ago
artwork Compose Multiplatform 1.4.0 docs (#3044) 1 year ago
benchmarks Compose benchmarks that run in attended mode for comparison JVM and K/N (#3297) 10 months ago
build-helpers Create destination dir if it does not exist (#1438) 2 years ago
ci Migrate examples to 1.4.3 (#3410) 10 months ago
components Components. Downgrade to Kotlin 1.8.22 (#3390) 10 months ago
compose Update build.gradle.kts (#3425) 9 months ago
docs Fixed links into FAQ.md (#3237) 11 months ago
examples Update Navigation tutorial to refer to Awesome List (#3441) 9 months ago
experimental Improve the experimental video player (#2906) 1 year ago
gradle-plugins Raise error when Homebrew JDK is used for packaging (#3451) 9 months ago
html Hardcode 1.8.21 as kotlin version in compose.html to make new version compatible with older kotlin (#3380) 10 months ago
idea-plugin Set icon on EDT (#3452) 9 months ago
license A third party license for NotoSans ttf fonts (#1870) 2 years ago
tooling Test Gradle plugin on relevant PRs (#2509) 1 year ago
tools Migrate examples to 1.4.3 (#3410) 10 months ago
tutorials Update Navigation tutorial to refer to Awesome List (#3441) 9 months ago
.gitignore Fix examples, templates (#2359) 2 years ago
CHANGELOG.md 1.5.0-beta01 CHANGELOG (#3407) 10 months ago
LICENSE.txt Update copyright notices 3 years ago
README.md Add a paragraph about compose html (#3057) 1 year ago
VERSIONING.md Migrate examples to 1.4.3 (#3410) 10 months ago
gradle.properties Enable official code style when root dir is opened in Intellij 4 years ago

README.md

official project Latest release Latest build

Compose Multiplatform

Compose Multiplatform is a declarative framework for sharing UIs across multiple platforms with Kotlin. It is based on Jetpack Compose and developed by JetBrains and open-source contributors.

You can choose the platforms across which to share your UIs using Compose Multiplatform:

For example, you can share UIs between iOS and Android or Windows and MacOS.

Shared UIs of the iOS, Android, desktop, and web apps

iOS

iOS support is in Alpha. It may change incompatibly and require manual migration in the future. We would appreciate your feedback on it in the public Slack channel #compose-ios. If you face any issues, please report them on GitHub.

Compose Multiplatform shares most of its API with Jetpack Compose, the Android UI framework developed by Google. You can use the same APIs to build user interfaces for both Android and iOS.

Since Compose is built on top of Kotlin Multiplatform, you can easily access native APIs, such as the Camera API, and embed complex native UI views, such as MKMapView.

Get started with Compose for iOS

Android

When Android is one of your targets, you can get the same experience for Android as if you were developing an Android app using Jetpack Compose.

Desktop

Compose Multiplatform targets the JVM and supports high-performance hardware-accelerated UI rendering on all major desktop platforms – macOS, Windows, and Linux.

It has desktop extensions for menus, keyboard shortcuts, window manipulation, and notification management.

Get started with Compose for Desktop

Web

Web support is Experimental and may be changed at any time. Use it only for evaluation purposes. We would appreciate your feedback on it in the public Slack channel #compose-web. If you face any issues, please report them on GitHub.

You can experiment with sharing your mobile or desktop UIs with the web. Compose for Web is based on Kotlin/Wasm, the newest target for Kotlin Multiplatform projects. It allows Kotlin developers to run their code in the browser with all the benefits that WebAssembly has to offer, such as good and predictable performance for your applications.

Get started with Compose for Web

All platforms at once

If you want to share UIs across all supported platforms at once, you can start with this template.

Note that this template currently doesn’t support the web. It will be added later.

We would appreciate your feedback on Compose Multiplatform in the public Slack channel #compose.

Libraries

Compose HTML

Compose HTML is a library targeting Kotlin/JS that provides Composable building blocks for creating web user interfaces with HTML and CSS.

Note that Compose HTML is not a multiplatform library. It can be used only with Kotlin/JS.

Learn more