File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
app/src/main/java/to/bitkit/ui/screens/wallets/receive Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ import androidx.compose.foundation.layout.Arrangement
44import androidx.compose.foundation.layout.Column
55import androidx.compose.foundation.layout.Row
66import androidx.compose.foundation.layout.Spacer
7- import androidx.compose.foundation.layout.aspectRatio
87import androidx.compose.foundation.layout.fillMaxHeight
98import androidx.compose.foundation.layout.fillMaxWidth
109import androidx.compose.foundation.layout.height
@@ -254,20 +253,21 @@ private fun ReceiveQrSlide(
254253) {
255254 val context = LocalContext .current
256255 val clipboard = LocalClipboardManager .current
256+
257257 Column (
258258 horizontalAlignment = Alignment .CenterHorizontally ,
259259 modifier = modifier
260260 ) {
261261 QrCodeImage (
262262 content = uri,
263263 logoPainter = qrLogoPainter,
264- modifier = Modifier .weight(1f )
264+ modifier = Modifier .weight(1f , fill = false )
265265 )
266+
266267 Spacer (modifier = Modifier .height(16 .dp))
267268 Row (
268269 horizontalArrangement = Arrangement .spacedBy(16 .dp),
269270 verticalAlignment = Alignment .Top ,
270- modifier = Modifier .weight(0.5f )
271271 ) {
272272 PrimaryButton (
273273 text = stringResource(R .string.common__edit),
You can’t perform that action at this time.
0 commit comments