itnoles
10/25/2021, 4:45 AMColton Idle
10/25/2021, 2:50 PMdimsuz
10/26/2021, 9:58 AMdetekt
rule for this. Also another rule for mistake which turns up quite often during refactoring, where after moving composable calls around you end up with
fun MyLayout(modifier: Modifier) {
Column {
Box(modifier = modifier) { }
}
}
while it should be
fun MyLayout(modifier: Modifier) {
Column(modifier = modifier) {
Box { }
}
}