File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed
app/src/main/java/to/bitkit/ui/screens/wallets/sheets Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -100,18 +100,21 @@ private fun NewTransactionSheetView(
100100 modifier = Modifier .fillMaxWidth()
101101 ) {
102102 SecondaryButton (
103- text = stringResource(R .string.common__close), // get correct text
103+ text = stringResource(R .string.wallet__send_details),
104104 onClick = onCloseClick,
105+ fullWidth = false ,
106+ modifier = Modifier .weight(1f )
105107 )
106108 PrimaryButton (
107- text = stringResource(R .string.common__close), // get correct text
109+ text = stringResource(R .string.common__close),
108110 onClick = onCloseClick,
109- fullWidth = false
111+ fullWidth = false ,
112+ modifier = Modifier .weight(1f )
110113 )
111114 }
112115 } else {
113116 PrimaryButton (
114- text = stringResource(R .string.common__close), // get correct text
117+ text = stringResource(R .string.common__close), // TODO get correct text
115118 onClick = onCloseClick,
116119 )
117120 }
You can’t perform that action at this time.
0 commit comments