From fa04e801b6cab0f30dafd40d2bed3674120893fe Mon Sep 17 00:00:00 2001 From: callebtc <93376500+callebtc@users.noreply.github.com> Date: Thu, 18 Sep 2025 18:24:23 +0200 Subject: [PATCH] image size --- bitchat/Views/ImageMessageRow.swift | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bitchat/Views/ImageMessageRow.swift b/bitchat/Views/ImageMessageRow.swift index 45903a7d..9e046ae8 100644 --- a/bitchat/Views/ImageMessageRow.swift +++ b/bitchat/Views/ImageMessageRow.swift @@ -27,8 +27,7 @@ struct ImageMessageRow: View { Image(uiImage: uiImage) .resizable() .aspectRatio(contentMode: .fit) - .frame(maxWidth: 200, maxHeight: 200, alignment: .topLeading) - .clipShape(RoundedRectangle(cornerRadius: 12)) + .frame(maxWidth: 300, maxHeight: 400, alignment: .topLeading) Spacer(minLength: 0) } if message.isPrivate && message.sender == viewModel.nickname,