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      

Hacking with Swift is sponsored by RevenueCat.

SPONSORED Take the pain out of configuring and testing your paywalls. RevenueCat's Paywalls allow you to remotely configure your entire paywall view without any code changes or app updates.

Click to save your free spot now

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.