Manos Chorianopoulos

fix screen heights

...@@ -183,7 +183,8 @@ struct MoreForYouView: View { ...@@ -183,7 +183,8 @@ struct MoreForYouView: View {
183 .cornerRadius(20, corners: [.topLeft]) 183 .cornerRadius(20, corners: [.topLeft])
184 184
185 } 185 }
186 - .frame(width:self.uiscreen.width, height:self.uiscreen.height ) 186 + .frame(maxWidth: .infinity, maxHeight: .infinity )
187 + // .frame(width:self.uiscreen.width, height:self.uiscreen.height )
187 } 188 }
188 } 189 }
189 190
......
...@@ -340,7 +340,8 @@ struct WalletView: View { ...@@ -340,7 +340,8 @@ struct WalletView: View {
340 .frame(maxWidth: .infinity, maxHeight: .infinity ) 340 .frame(maxWidth: .infinity, maxHeight: .infinity )
341 341
342 } 342 }
343 - .frame(width:self.uiscreen.width, height:self.uiscreen.height ) 343 + .frame(maxWidth: .infinity, maxHeight: .infinity )
344 + // .frame(width:self.uiscreen.width, height:self.uiscreen.height )
344 } 345 }
345 } 346 }
346 347
......