Posts

Post not yet marked as solved
10 Replies
3.0k Views
I'm trying to figure out how do I get past "hello World" when I run my app through the simulator, it says build successful but "Hello World" is as far as I could get when I run the app through the simulator, any suggestions??
Posted Last updated
.
Post not yet marked as solved
2 Replies
371 Views
i expect it show "hello world" and then get off the screen so i could get to the other screens but it doesnt do that, it just stays like thatimport SwiftUIstruct ContentView: View { var body: some View { Text("Hello World") }}#if Debugstruct ContentView_Previews: PreviewProvider { static var previews: some View { ContentView() } }#endif
Posted Last updated
.