UPGRADE YOUR SKILLS: Learn advanced Swift and SwiftUI on Hacking with Swift+! >>

Day 30 - WordScramble - What's the Difference Between w/ and w/o a Vstack inside NavigationView

Forums > 100 Days of SwiftUI

When I was following the tutorial, I found that if I missed a Vstack inside NavigationView, the list part below textfield couldn 't present on the screen.

NavigationView {
    TextField("Type a new word", text: $newWord, onCommit: addNewWord)
        .textFieldStyle(RoundedBorderTextFieldStyle())
        .padding()

    List(self.usedWords, id:\.self) {
        Text($0)
    }
}

I tried to wrap TextField and List with a Vstack, it works perfectly with list of words shown on the screen.

NavigationView {
            VStack {
                TextField("Type a new word", text: $newWord, onCommit: addNewWord)
                    .textFieldStyle(RoundedBorderTextFieldStyle())
                    .padding()

                List(self.usedWords, id:\.self) {
                    Text($0)
                }
            }
        }

I was kind of struggling to understand why. Could someone kindly help me on this?

2      

TAKE YOUR SKILLS TO THE NEXT LEVEL If you like Hacking with Swift, you'll love Hacking with Swift+ – it's my premium service where you can learn advanced Swift and SwiftUI, functional programming, algorithms, and more. Plus it comes with stacks of benefits, including monthly live streams, downloadable projects, a 20% discount on all books, and free gifts!

Find out more

Sponsor Hacking with Swift and reach the world's largest Swift community!

Archived topic

This topic has been closed due to inactivity, so you can't reply. Please create a new topic if you need to.

All interactions here are governed by our code of conduct.

 
Unknown user

You are not logged in

Log in or create account
 

Link copied to your pasteboard.