From 95c7d31e47b3da39b5985cd57638885c45b77de1 Mon Sep 17 00:00:00 2001 From: spaced4ndy <8711996+spaced4ndy@users.noreply.github.com> Date: Thu, 7 Dec 2023 14:07:47 +0400 Subject: [PATCH] add explicit frame to qr code --- apps/ios/Shared/Views/NewChat/NewChatView.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/ios/Shared/Views/NewChat/NewChatView.swift b/apps/ios/Shared/Views/NewChat/NewChatView.swift index 17d2004db..566f26447 100644 --- a/apps/ios/Shared/Views/NewChat/NewChatView.swift +++ b/apps/ios/Shared/Views/NewChat/NewChatView.swift @@ -263,6 +263,7 @@ private struct InviteView: View { private func qrCodeView() -> some View { Section("Or show this code") { SimpleXLinkQRCode(uri: connReqInvitation, onShare: setInvitationUsed) + .frame(maxWidth: .infinity, maxHeight: .infinity) .padding() .background( RoundedRectangle(cornerRadius: 12, style: .continuous)