Flocon/FloconDesktop
Florent CHAMPIGNY d9b9808e2d
feat: [NETWORK] merge graphql into network (#19)
* feat: [NETWORK] merge graphql into network

* extracted query method

* extracted query method

* extracted query method

* formatted

* formatted

* added status

---------

Co-authored-by: Florent Champigny <florent@bere.al>
2025-08-02 13:01:42 +02:00
..
composeApp feat: [NETWORK] merge graphql into network (#19) 2025-08-02 13:01:42 +02:00
gradle initial import 2025-07-29 21:12:28 +02:00
iosApp refact: Desktop package name (#15) 2025-07-31 23:30:17 +02:00
server refact: Desktop package name (#15) 2025-07-31 23:30:17 +02:00
shared feat: [NETWORK] merge graphql into network (#19) 2025-08-02 13:01:42 +02:00
.editorconfig initial import 2025-07-29 21:12:28 +02:00
.gitignore initial import 2025-07-29 21:12:28 +02:00
build.gradle.kts initial import 2025-07-29 21:12:28 +02: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 initial import 2025-07-29 21:12:28 +02: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.