commonMain.com.bselzer.ktx.compose.ui.layout.merge.VerticalArrangementMerger.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of compose-ui-layout-jvm Show documentation
Show all versions of compose-ui-layout-jvm Show documentation
Base extensions for laying out Compose Multiplatform UI.
package com.bselzer.ktx.compose.ui.layout.merge
import androidx.compose.foundation.layout.Arrangement
import androidx.compose.runtime.Stable
import androidx.compose.ui.unit.Density
class VerticalArrangementMerger : ComponentMerger {
override val default: Arrangement.Vertical = Default
companion object {
@Stable
val Default = object : Arrangement.Vertical {
override fun Density.arrange(totalSize: Int, sizes: IntArray, outPositions: IntArray) {
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy