android / snippets

Main repository for snippets surfaced on developer.android.com.
Apache License 2.0
561 stars 152 forks source link

Variable minWidth should be maxWidth #263

Open totemtec opened 3 months ago

totemtec commented 3 months ago

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