Does anyone know how does SwiftUI render in terms of coordinate space? It doesn't look like the frame's origin is now at the 0, 0
in the left top corner. For example adding a Text
with a modifier would offset the label outside of a view.
var body: some View {
Text("my long enough string")
.position(CGPoint(x: 0, y: 100))
}
The result is I can only see "ugh string".