Vasilis

final ui fixes couponsView

...@@ -155,12 +155,14 @@ extension CouponsView { ...@@ -155,12 +155,14 @@ extension CouponsView {
155 HStack(alignment: .center) { 155 HStack(alignment: .center) {
156 ImageView(withURL: result["img_preview"] as! String) 156 ImageView(withURL: result["img_preview"] as! String)
157 .frame(maxWidth: self.uiscreen.width * 0.15) 157 .frame(maxWidth: self.uiscreen.width * 0.15)
158 - .padding(.leading , self.uiscreen.width * 0.04) 158 + .padding(.leading , self.uiscreen.width * 0.055)
159 VLine() 159 VLine()
160 .stroke(style: StrokeStyle(lineWidth: 1, dash: [5])) 160 .stroke(style: StrokeStyle(lineWidth: 1, dash: [5]))
161 .foregroundColor(Color(red: 0.4392156862745098, green: 0.4392156862745098, blue: 0.4392156862745098)) 161 .foregroundColor(Color(red: 0.4392156862745098, green: 0.4392156862745098, blue: 0.4392156862745098))
162 .frame(width: 1) 162 .frame(width: 1)
163 .padding(.leading, self.uiscreen.width * 0.01) 163 .padding(.leading, self.uiscreen.width * 0.01)
164 + .padding(.top, self.uiscreen.height * 0.01)
165 + .padding(.bottom, self.uiscreen.height * 0.0075)
164 Spacer() 166 Spacer()
165 VStack { 167 VStack {
166 Text(CouponsView.couponView.localizedWithParameter(parameter: result["admin_name"] as? String ?? "")) 168 Text(CouponsView.couponView.localizedWithParameter(parameter: result["admin_name"] as? String ?? ""))
......