There was an error while loading. Please reload this page.
1 parent f566475 commit 2c48e80Copy full SHA for 2c48e80
1 file changed
app/src/main/java/de/berlindroid/zepatch/MainActivity.kt
@@ -163,7 +163,7 @@ private fun PatchableList(
163
onClick = { onItemClicked(name) },
164
) {
165
Column(
166
- modifier = Modifier.padding(8.dp),
+ modifier = Modifier.padding(8.dp)
167
168
Row(
169
modifier = Modifier.fillMaxWidth(),
@@ -176,7 +176,12 @@ private fun PatchableList(
176
)
177
}
178
Box(Modifier.height(4.dp))
179
- PatchableBoundingBox(patchable = patchable)
+ Row(
180
+ modifier = Modifier.fillMaxWidth(),
181
+ horizontalArrangement = Arrangement.Center
182
+ ) {
183
+ PatchableBoundingBox(patchable = patchable)
184
+ }
185
186
187
0 commit comments