Flocon/FloconDesktop
doTTTTT 89178e8028
Some checks failed
docs / deploy (push) Has been cancelled
chore: Clean toml
2026-03-09 23:14:03 +01:00
..
.vscode feat: error catching (#435) 2025-12-04 12:55:42 +01:00
composeApp chore: Clean toml 2026-03-09 23:14:03 +01:00
data chore: Clean toml 2026-03-09 23:14:03 +01:00
domain chore: Clean toml 2026-03-09 23:14:03 +01:00
gradle chore: Clean toml 2026-03-09 23:14:03 +01:00
library/designsystem chore: Clean toml 2026-03-09 23:14:03 +01:00
navigation chore: Clean toml 2026-03-09 23:14:03 +01:00
.editorconfig refact: ktlint format (#422) 2025-12-02 14:53:53 +01:00
.gitignore initial import 2025-07-29 21:12:28 +02:00
build.gradle.kts chore: Clean toml 2026-03-09 23:14:03 +01:00
generateAboutLibraries.sh initial import 2025-07-29 21:12:28 +02:00
gradle.properties initial import 2025-07-29 21:12:28 +02:00
gradlew initial import 2025-07-29 21:12:28 +02:00
gradlew.bat initial import 2025-07-29 21:12:28 +02:00
README.md initial import 2025-07-29 21:12:28 +02:00
release.sh fix: [IMAGE] not displayed on release (#18) 2025-08-02 09:44:46 +02:00
settings.gradle.kts Nav3 (#191) 2025-11-12 11:17:57 +01:00

This is a Kotlin Multiplatform project targeting Android, iOS, Web, Desktop, Server.

  • /composeApp is for code that will be shared across your Compose Multiplatform applications. It contains several subfolders:

    • commonMain is for code thats 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 Apples CoreCrypto for the iOS part of your Kotlin app, iosMain would be the right folder for such calls.
  • /iosApp contains iOS applications. Even if youre 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.

  • /server is for the Ktor server application.

  • /shared is for the code that will be shared between all targets in the project. The most important subfolder is commonMain. If preferred, you can add code to the platform-specific folders here too.

Learn more about Kotlin Multiplatform, Compose Multiplatform, Kotlin/Wasm

We would appreciate your feedback on Compose/Web and Kotlin/Wasm in the public Slack channel #compose-web. If you face any issues, please report them on YouTrack.

You can open the web application by running the :composeApp:wasmJsBrowserDevelopmentRun Gradle task.