Does GeometryReader not work any more in iOS Swift Playgrounds for iPad (ver 3.4) ? This code runs fine on MBP in Xcode ... fails on line 7 with Abort() Called on iPad from a start up Blank 5.3 playground.
I'll see if I can identify specific places where iOS Swift Playgrounds for iPad ver 3.4 has other issues.
Code Block swift import PlaygroundSupport import SwiftUI struct ContentView: View { var body: some View { GeometryReader { geometry in Color.blue .frame(height: geometry.size.height * 0.5) } } } PlaygroundPage.current.setLiveView( ContentView() )
I'll see if I can identify specific places where iOS Swift Playgrounds for iPad ver 3.4 has other issues.