feature clients

new frontend
This commit is contained in:
stefan
2025-09-25 13:03:15 +02:00
parent b8c008ddba
commit 0cc25cb108
32 changed files with 769 additions and 156 deletions
@@ -0,0 +1,32 @@
plugins {
alias(libs.plugins.kotlinMultiplatform)
}
group = "at.mocode.clients.shared"
version = "1.0.0"
kotlin {
jvm()
js {
browser()
}
@OptIn(org.jetbrains.kotlin.gradle.ExperimentalWasmDsl::class)
wasmJs {
browser()
}
jvmToolchain(21)
sourceSets {
val commonMain by getting {
dependencies {
// No specific dependencies needed for navigation routes
}
}
val commonTest by getting {
dependencies {
implementation(libs.kotlin.test)
}
}
}
}
@@ -0,0 +1,6 @@
package at.mocode.clients.shared.navigation
sealed class AppScreen {
data object Home : AppScreen()
data object Ping : AppScreen()
}