Course and grade management app
Go to file
jay-tux 3a47154969
Migration
2025-04-29 17:42:36 +02:00
composeApp Migration 2025-04-29 17:42:36 +02:00
gradle Slight UI updates 2025-02-25 10:01:53 +01:00
.gitignore Criteria for assignment grading 2025-04-25 09:47:18 +02:00
README.md Initial 2025-02-19 09:27:21 +01:00
build.gradle.kts Initial 2025-02-19 09:27:21 +01:00
gradle.properties Initial 2025-02-19 09:27:21 +01:00
gradlew Initial 2025-02-19 09:27:21 +01:00
gradlew.bat Initial 2025-02-19 09:27:21 +01:00
settings.gradle.kts Initial 2025-02-19 09:27:21 +01:00

README.md

This is a Kotlin Multiplatform project targeting Desktop.

  • /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.

Learn more about Kotlin Multiplatform