Post

Replies

Boosts

Views

Activity

Reply to GeometryReader alignment
Yes, this works nicely, just add a second frame. import SwiftUI struct ContentView: View {     var body: some View {         GeometryReader { geo in             Image("Example")                 .resizable()                 .scaledTofit()                 .frame (width: geo.size.width * 0.8)                 .frame (width: geo.size.width, height: geo.size.height)         }     } Hope this helps.
Mar ’22
Reply to Xcode Beta 5: App Store Connect Operation Error
Your app was built with a beta version of Xcode or SDK. Apps submitted to the App Store must be built with the GM version of Xcode 10.1 and the SDK for iOS 12.1 and watchOS 5.1, Xcode 7.1 and the SDK for tvOS 9, or Xcode 6 and the SDK for macOS 10.9 or later. If you are using an Xcode beta version to test your app, make sure you are using the latest supported version. For more information about supported beta versions, view the App Store Connect What's New page - https://developer.apple.com/app-store-connect/whats-new/. This is what apple said to me when I submitted an app using Xcode beta. Hope this is helpful!
Aug ’20