appKODE / detekt-rules-compose

A collection of Detekt rules for Jetpack Compose
MIT License
136 stars 8 forks source link

implement UnnecessaryLayoutWrapper rule #23

Open sergey-shevtsov opened 1 year ago

sergey-shevtsov commented 1 year ago

The rule reports if the use of Box, Column or Row is not required. For example, in code below, we can easily remove the parent column.

Column {
    Box(modifier = Modifier.size(200.dp)) {
        // Other content
    }
}