Showing
2 changed files
with
4 additions
and
2 deletions
No preview for this file type
| ... | @@ -159,11 +159,12 @@ extension CouponsView { | ... | @@ -159,11 +159,12 @@ extension CouponsView { |
| 159 | Spacer() | 159 | Spacer() |
| 160 | } | 160 | } |
| 161 | } | 161 | } |
| 162 | - .padding(.top, self.uiscreen.height * 0.05) | ||
| 163 | .frame(width: self.uiscreen.width * 0.95, height: self.uiscreen.height * 0.13) | 162 | .frame(width: self.uiscreen.width * 0.95, height: self.uiscreen.height * 0.13) |
| 164 | .background( | 163 | .background( |
| 165 | - Image("coupons_container", bundle: Bundle(for: MyEmptyClass.self)).resizable() | 164 | + Image("coupons_container", bundle: Bundle(for: MyEmptyClass.self)) |
| 165 | + .resizable() | ||
| 166 | ) | 166 | ) |
| 167 | + .padding(.top, self.uiscreen.height * 0.05) | ||
| 167 | 168 | ||
| 168 | } | 169 | } |
| 169 | } | 170 | } |
| ... | @@ -201,6 +202,7 @@ struct CouponsView: View { | ... | @@ -201,6 +202,7 @@ struct CouponsView: View { |
| 201 | .frame(width:self.uiscreen.width, height:self.uiscreen.height * 0.9 ) | 202 | .frame(width:self.uiscreen.width, height:self.uiscreen.height * 0.9 ) |
| 202 | .background( | 203 | .background( |
| 203 | Image("coupons_scrollview", bundle: Bundle(for: MyEmptyClass.self)) | 204 | Image("coupons_scrollview", bundle: Bundle(for: MyEmptyClass.self)) |
| 205 | + .resizable() | ||
| 204 | ) | 206 | ) |
| 205 | 207 | ||
| 206 | } | 208 | } | ... | ... |
-
Please register or login to post a comment