Posts

Post not yet marked as solved
10 Replies
{ NavigationLink(destination: DestView(passed: self.$destContent)) {Use of unresolved identifier "DestView"
Post not yet marked as solved
10 Replies
i did read your answer but it didnt work i got multiple errors... I need to be able to get to the other screens but i'm not able to do that i'm stuck at hello world
Post not yet marked as solved
10 Replies
yeah i do follow a tutorial to start learning but the guys version of xcode is an earlier one which doesnt have content view and he couldn't understand completly so i am here, i'm guessin i need to write a code that'll get me off that screen and on to the main screen
Post not yet marked as solved
10 Replies
i expect it show "hello world" and then get off the screen so i could use the app but it doesnt do that, it just stays like thatimport SwiftUI struct ContentView: View { var body: some View { Text("Hello World") }}#if Debugstruct ContentView_Previews: PreviewProvider { static var previews: some View { ContentView() } }#endif