I have a version of my app that runs correctly with iOS 13, but since iOS 14 Apple seem to change the way GeometryReader works (see: iOS 14 has Changed (or broken?) SwiftUI GeometryReader).
The problem is that now there are two different sets of settings regarding the GeometryReader that should be applied for iOS 13 and any newer versions starting from iOS 14.
A. Since this is an app wide problem, is it possible to upload a build that supports only iOS 14 and newer, while maintaining the older build for iOS 13 ?, Would I be able to update the older build separately ?
B.If not, what is the appropriate way to deal with two classes that needs different adjustments for geometry reader settings ? , for example:
GeometryReader{geomtery in
SomeClass.frame(width:geomtery.size.width/10) // should be divided by a different factor in iOS 14 !
}