Skip to content

Commit 967e9e3

Browse files
committed
refactor: image alignment
1 parent ff8bbf7 commit 967e9e3

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

app/src/main/java/to/bitkit/ui/screens/wallets/sheets/NewTransactionSheet.kt

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,11 @@ private fun NewTransactionSheetView(
103103
painter = painterResource(R.drawable.check),
104104
contentDescription = null,
105105
contentScale = ContentScale.FillWidth,
106-
modifier = Modifier.fillMaxWidth()
106+
modifier = Modifier
107+
.fillMaxWidth()
108+
.padding(horizontal = 16.dp)
109+
.align(Alignment.Center)
110+
107111
)
108112
}
109113

@@ -171,7 +175,7 @@ private fun NewTransactionSheetView(
171175
)
172176
}
173177

174-
Spacer(modifier = Modifier.height(16.dp))
178+
Spacer(modifier = Modifier.height(8.dp))
175179
}
176180
}
177181
}

0 commit comments

Comments
 (0)