Raccoon/core/commonui/modals/build.gradle.kts
Dieguitux 539d20a6f8
Fix window insets and bar color (#215)
* remove useless dependency

* create common utility to calculate top bar padding

* solve some deprecation issues in DefaultBarColorProvider

* remove unnecessary background in some placeholders

* remove edge-to-edge from advanced settings (enabled by default)

* simplify custom top bars

* update all usages of material3 Scaffold
2025-01-02 17:33:49 +01:00

28 lines
932 B
Plaintext

plugins {
id("com.livefast.eattrash.kotlinMultiplatform")
id("com.livefast.eattrash.composeMultiplatform")
}
kotlin {
sourceSets {
val commonMain by getting {
dependencies {
implementation(libs.compose.colorpicker)
implementation(libs.voyager.navigator)
implementation(projects.core.appearance)
implementation(projects.core.commonui.components)
implementation(projects.core.commonui.lemmyui)
implementation(projects.core.l10n)
implementation(projects.core.navigation)
implementation(projects.core.notifications)
implementation(projects.core.persistence)
implementation(projects.core.resources)
implementation(projects.core.utils)
implementation(projects.domain.lemmy.data)
}
}
}
}