File tree Expand file tree Collapse file tree 1 file changed +7
-11
lines changed
app/src/main/java/to/bitkit/ui/screens/wallets/sheets Expand file tree Collapse file tree 1 file changed +7
-11
lines changed Original file line number Diff line number Diff line change @@ -98,6 +98,13 @@ private fun NewTransactionSheetView(
9898 .fillMaxWidth()
9999 .align(Alignment .BottomEnd )
100100 )
101+ } else {
102+ Image (
103+ painter = painterResource(R .drawable.check),
104+ contentDescription = null ,
105+ contentScale = ContentScale .FillWidth ,
106+ modifier = Modifier .fillMaxWidth()
107+ )
101108 }
102109
103110 val composition by rememberLottieComposition(
@@ -137,17 +144,6 @@ private fun NewTransactionSheetView(
137144
138145 BalanceHeaderView (sats = details.sats, modifier = Modifier .fillMaxWidth())
139146
140- if (details.direction == NewTransactionSheetDirection .SENT ) {
141- Spacer (modifier = Modifier .weight(1f ))
142-
143- Image (
144- painter = painterResource(R .drawable.check),
145- contentDescription = null ,
146- contentScale = ContentScale .FillWidth ,
147- modifier = Modifier .fillMaxWidth()
148- )
149- }
150-
151147 Spacer (modifier = Modifier .weight(1f ))
152148
153149 if (details.direction == NewTransactionSheetDirection .SENT ) {
You can’t perform that action at this time.
0 commit comments