Skip to content

Commit

Permalink
Notifications: Fix size of PushNotificationSetupView (#61)
Browse files Browse the repository at this point in the history
  • Loading branch information
anian03 authored Jun 26, 2024
1 parent efb1689 commit 3de4642
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ public struct PushNotificationSetupView: View {
Image("notifications", bundle: .module)
.resizable()
.scaledToFit()
.frame(width: UIScreen.main.bounds.size.width * 0.8)
.containerRelativeFrame(.horizontal) { width, _ in
width * 0.8
}
Text(R.string.localizable.push_notification_settings_receive_label())
.bold()
Text(R.string.localizable.push_notification_settings_receive_information())
Expand Down

0 comments on commit 3de4642

Please sign in to comment.