We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1bfff58 + 2cbf224 commit 50043f9Copy full SHA for 50043f9
presentation/src/main/java/com/threegap/bitnagil/presentation/reportdetail/ReportDetailScreen.kt
@@ -85,7 +85,9 @@ private fun ReportDetailScreen(
85
86
Spacer(modifier = Modifier.height(14.dp))
87
88
- Row {
+ Row(
89
+ horizontalArrangement = Arrangement.spacedBy(8.dp),
90
+ ) {
91
state.imageUrls.forEach { imageUrl ->
92
AsyncImage(
93
model = ImageRequest.Builder(LocalContext.current)
@@ -143,6 +145,7 @@ private fun ReportDetailScreenPreview() {
143
145
"consectetur adipiscing elit," +
144
146
" sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. " +
147
"Nisl tincidunt eget nullam non.",
148
+ imageUrls = listOf("", ""),
149
),
150
onClickPreviousButton = {},
151
)
0 commit comments