Skip to content

Commit 2c48e80

Browse files
committed
polish: center centers
1 parent f566475 commit 2c48e80

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

app/src/main/java/de/berlindroid/zepatch/MainActivity.kt

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ private fun PatchableList(
163163
onClick = { onItemClicked(name) },
164164
) {
165165
Column(
166-
modifier = Modifier.padding(8.dp),
166+
modifier = Modifier.padding(8.dp)
167167
) {
168168
Row(
169169
modifier = Modifier.fillMaxWidth(),
@@ -176,7 +176,12 @@ private fun PatchableList(
176176
)
177177
}
178178
Box(Modifier.height(4.dp))
179-
PatchableBoundingBox(patchable = patchable)
179+
Row(
180+
modifier = Modifier.fillMaxWidth(),
181+
horizontalArrangement = Arrangement.Center
182+
) {
183+
PatchableBoundingBox(patchable = patchable)
184+
}
180185
}
181186
}
182187
}

0 commit comments

Comments
 (0)