Course and grade management app
Go to file
jay-tux b69b46afee
UI fixes and additions
2025-03-04 15:59:48 +01:00
composeApp UI fixes and additions 2025-03-04 15:59:48 +01:00
gradle Slight UI updates 2025-02-25 10:01:53 +01:00
.gitignore Initial 2025-02-19 09:27:21 +01: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