Showing
2 changed files
with
5 additions
and
5 deletions
No preview for this file type
... | @@ -104,8 +104,8 @@ extension CouponsView { | ... | @@ -104,8 +104,8 @@ extension CouponsView { |
104 | HStack { | 104 | HStack { |
105 | Image("ic_back", bundle: Bundle(for: MyEmptyClass.self)) | 105 | Image("ic_back", bundle: Bundle(for: MyEmptyClass.self)) |
106 | .resizable() | 106 | .resizable() |
107 | - .frame(width: self.uiscreen.height * 0.03, height: self.uiscreen.height * 0.02) | 107 | + .frame(width: self.uiscreen.height * 0.025, height: self.uiscreen.height * 0.02) |
108 | - .offset(y: self.uiscreen.height * 0.02) | 108 | + .offset(y: self.uiscreen.height * 0.018) |
109 | } | 109 | } |
110 | } | 110 | } |
111 | Text("Όλα τα κουπόνια μου") | 111 | Text("Όλα τα κουπόνια μου") |
... | @@ -162,7 +162,7 @@ extension CouponsView { | ... | @@ -162,7 +162,7 @@ extension CouponsView { |
162 | .padding(.top, self.uiscreen.height * 0.05) | 162 | .padding(.top, self.uiscreen.height * 0.05) |
163 | .frame(width: self.uiscreen.width * 0.95, height: self.uiscreen.height * 0.13) | 163 | .frame(width: self.uiscreen.width * 0.95, height: self.uiscreen.height * 0.13) |
164 | .background( | 164 | .background( |
165 | - Image("coupons_container", bundle: Bundle(for: MyEmptyClass.self)) | 165 | + Image("coupons_container", bundle: Bundle(for: MyEmptyClass.self)).resizable() |
166 | ) | 166 | ) |
167 | 167 | ||
168 | } | 168 | } |
... | @@ -174,7 +174,7 @@ extension CouponsView { | ... | @@ -174,7 +174,7 @@ extension CouponsView { |
174 | struct CouponsView: View { | 174 | struct CouponsView: View { |
175 | 175 | ||
176 | var data:Array<NSDictionary> = DataModel().getData | 176 | var data:Array<NSDictionary> = DataModel().getData |
177 | - var tag: String = "coupons" | 177 | + |
178 | var parentView: UIView | 178 | var parentView: UIView |
179 | 179 | ||
180 | var uiscreen = UIScreen.main.bounds | 180 | var uiscreen = UIScreen.main.bounds |
... | @@ -200,7 +200,7 @@ struct CouponsView: View { | ... | @@ -200,7 +200,7 @@ struct CouponsView: View { |
200 | } | 200 | } |
201 | .frame(width:self.uiscreen.width, height:self.uiscreen.height * 0.9 ) | 201 | .frame(width:self.uiscreen.width, height:self.uiscreen.height * 0.9 ) |
202 | .background( | 202 | .background( |
203 | - Image("coupons_scrollView", bundle: Bundle(for: MyEmptyClass.self)) | 203 | + Image("coupons_scrollview", bundle: Bundle(for: MyEmptyClass.self)) |
204 | ) | 204 | ) |
205 | 205 | ||
206 | } | 206 | } | ... | ... |
-
Please register or login to post a comment