We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85eda57 commit 2daac25Copy full SHA for 2daac25
compose-multiplatform-common/src/commonMain/kotlin/com/huanshankeji/compose/layout/Intrinsic.kt
@@ -3,16 +3,10 @@ package com.huanshankeji.compose.layout
3
import androidx.compose.runtime.Stable
4
import com.huanshankeji.compose.ui.Modifier
5
6
-private const val DEPRECATION_MESSAGE =
7
- "This API doesn't work as expected, is not consistent on both platforms, and is temporarily deprecated."
8
-
9
-@Deprecated(DEPRECATION_MESSAGE)
10
@Stable
11
expect fun Modifier.width(intrinsicSize: IntrinsicSize): Modifier
12
13
14
15
expect fun Modifier.height(intrinsicSize: IntrinsicSize): Modifier
16
17
18
enum class IntrinsicSize { Min, Max }
0 commit comments