snippets icon indicating copy to clipboard operation
snippets copied to clipboard

Variable minWidth should be maxWidth

Open totemtec opened this issue 1 year ago • 0 comments
trafficstars

File: com.example.compose.snippets.layouts.ConstraintLayoutSnippets.kt

fun DecoupledConstraintLayout() {
    BoxWithConstraints {
        val constraints = if (minWidth < 600.dp) {
            decoupledConstraints(margin = 16.dp) // Portrait constraints
        } else {
            decoupledConstraints(margin = 32.dp) // Landscape constraints
        }

Variable minWidth should be maxWidth

totemtec avatar May 03 '24 08:05 totemtec