Flocon/FloconDesktop
Florent CHAMPIGNY 35e110a384
Feat network filter sort (#67)
* feat: [NETWORK] sort and filter

* added filters

* added filters

* sort is working

* sort is working

* sort is working

* sort is working

* added filter

* added filter

* added filter

* added filter

* added filter

* added filter

* added filter

* removed code

* removed some code

---------

Co-authored-by: Florent Champigny <florent@bere.al>
2025-08-07 13:36:21 +02:00
..
composeApp Feat network filter sort (#67) 2025-08-07 13:36:21 +02:00
gradle feat : network filter & sort (#65) 2025-08-07 13:34:17 +02:00
library/designsystem added on request (#64) 2025-08-06 16:41:38 +02:00
shared refact: [CORE] send device id (#63) 2025-08-06 16:22:18 +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 feature: Add DS module (#26) 2025-08-04 09:08:58 +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 refact: [DISTRIB] removed ios and server (#41) 2025-08-04 17:57:47 +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.