Skip to content

Commit

Permalink
Merge pull request #1460 from p2p-org/bugfix/PWN-9249
Browse files Browse the repository at this point in the history
[PWN-9249] Fix home small banner view
  • Loading branch information
lisemyon authored Jul 13, 2023
2 parents 363dc50 + 5806eb3 commit 56fe578
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,14 @@ struct HomeSmallBannerView: View {
.padding(.top, 16)
}
}
.layoutPriority(1)

Spacer()

Image(uiImage: params.image)
.resizable()
.scaledToFit()
.frame(width: params.imageSize.width, height: params.imageSize.height)
.frame(idealWidth: params.imageSize.width, idealHeight: params.imageSize.height)
.padding(.trailing, 16)
}
.padding(16)
Expand Down

0 comments on commit 56fe578

Please sign in to comment.