Manos Chorianopoulos

barcode lib v12

...@@ -178,11 +178,18 @@ extension CouponBarcodeView { ...@@ -178,11 +178,18 @@ extension CouponBarcodeView {
178 // .frame(maxWidth: .infinity) 178 // .frame(maxWidth: .infinity)
179 // .padding(.top, self.uiscreen.height * 0.01) 179 // .padding(.top, self.uiscreen.height * 0.01)
180 180
181 - Image(uiImage: barcodeImage) 181 + Image(uiImage: UIImage(named: "ic_back")!)
182 - .renderingMode(.original) 182 + .renderingMode(.original)
183 - .resizable() 183 + .resizable()
184 - .aspectRatio(contentMode: .fit) 184 + .aspectRatio(contentMode: .fit)
185 - .frame(width: 300, height: 300) 185 + .frame(width: 300, height: 300)
186 +
187 +
188 +// Image(uiImage: barcodeImage)
189 +// .renderingMode(.original)
190 +// .resizable()
191 +// .aspectRatio(contentMode: .fit)
192 +// .frame(width: 300, height: 300)
186 // .frame(width: self.uiscreen.width * 0.8, height: self.uiscreen.height * 0.05) 193 // .frame(width: self.uiscreen.width * 0.8, height: self.uiscreen.height * 0.05)
187 } 194 }
188 // } 195 // }
......