Here is what it's supposed to look like:
Here is what it currently looks like (ignore the differentiating colors):
Here is my code:
ZStack{
ScrollView(.horizontal){
HStack{
VStack{
FlightDetails()
WeatherDetails()
}
}
Spacer()
}
.frame(width: 1350, height: 1000)
.background(Color.black.edgesIgnoringSafeArea([.all]))
.offset(y: 80)
.offset(x: 150)
ProgressBar()
.offset(x: 100)
.padding(0)
SideMenu()
.padding(0)
.offset(x: 55)
}
}
Post
Replies
Boosts
Views
Activity
Currently, struggling on the same thing. Have you found a solution? If so, please let me know. :)
@Polyphonic Yes, it is a SwiftUI application. It scales larger and outside of the frame. I designed the app based on size accordingly to the 6th generation iPad. However, I am testing it on a 10th generation iPad. They are both different screen sizes, therefore they must be scaled appropriately. How would I go about adjusting the scaling so that it can fit properly to any accessible iPad.