Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
Ivan Matkov f715eb58ea
Add a note about known issue with Java 11 compatibility (#4650)
il y a 14 heures
.github [gradle] Update gradle and AGP in test runs. (#4542) il y a 4 semaines
.idea Update copyright notices il y a 3 ans
artwork Compose Multiplatform 1.4.0 docs (#3044) il y a 1 an
benchmarks build(kn-performance): use compose 1.5.10 to fix the build (#4173) il y a 2 mois
build-helpers Create destination dir if it does not exist (#1438) il y a 2 ans
ci Compose 1.6.2 il y a 1 semaine
components Delete the experimental mark from the stable resources library API (#4623) il y a 24 heures
compose Merge remote-tracking branch 'origin/release/1.6.1' il y a 1 mois
docs Update links to docs on the new portal (#3897) il y a 5 mois
examples Compose 1.6.2 il y a 1 semaine
experimental Updated example of building using the CLI to Kotlin 1.9.23 and Compose 1.6.1 (#4488) il y a 4 semaines
gradle-plugins [gradle] Update compose dependency in the gradle plugin il y a 22 heures
html Add opportunity to use custom prefixes in StyleSheet (#3015) il y a 3 mois
idea-plugin Tooling maintenance (#3606) il y a 8 mois
license A third party license for NotoSans ttf fonts (#1870) il y a 2 ans
tooling Test Gradle plugin on relevant PRs (#2509) il y a 1 an
tools Update replaceVersion.sh (#4142) il y a 3 mois
tutorials Compose 1.6.2 il y a 1 semaine
.gitignore Fix examples, templates (#2359) il y a 2 ans
CHANGELOG.md Add a note about known issue with Java 11 compatibility (#4650) il y a 14 heures
LICENSE.txt Update copyright notices il y a 3 ans
README.md Update links to docs on the new portal (#3897) il y a 5 mois
VERSIONING.md Update links to docs on the new portal (#3897) il y a 5 mois
gradle.properties Enable official code style when root dir is opened in Intellij il y a 4 ans

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 Multiplatform

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.

Get started with Compose Multiplatform

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 Multiplatform

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

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

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