Flocon/FloconDesktop
Jacob Ras c4fd0368fa
Some checks failed
docs / deploy (push) Has been cancelled
Windows: Enable menu and set upgrade UUID (#497)
2026-02-14 10:00:22 +01:00
..
.vscode feat: error catching (#435) 2025-12-04 12:55:42 +01:00
composeApp Windows: Enable menu and set upgrade UUID (#497) 2026-02-14 10:00:22 +01:00
data Feat db logs pages (#476) 2026-01-09 11:29:27 +01:00
domain Feat db logs pages (#476) 2026-01-09 11:29:27 +01:00
gradle feat: [DASHBOARD] dashboard markdown (#442) 2025-12-08 11:52:29 +01:00
library/designsystem Use JsonTree in network detail view (#478) 2026-01-26 11:27:11 +01:00
navigation feat: [NETWORK] deep search (#448) 2025-12-10 21:59:53 +01:00
.editorconfig refact: ktlint format (#422) 2025-12-02 14:53:53 +01:00
.gitignore
build.gradle.kts removed gradle ktlint (#423) 2025-12-02 15:12:51 +01:00
generateAboutLibraries.sh
gradle.properties
gradlew
gradlew.bat
README.md
release.sh
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.