Why is the Spicy Banner mis-aligned?

The demo in the Introduction to SwiftUI showed a nicely aligned "🔥Spicy" Label consisting of a String and the flame.fill SF symbol. However, with the code below (appearing immediately before the closing bracket for the VStack in the body property within the SandwichDetail struct), the label appears misaligned.
The single flame.fill symbol appears as normal, but as though it occupies the space that two flame.fill symbols would occupy if stacked vertically. Only one symbol is visible but as though on the preceding line relative to the Spicy string following immediately after.

Code Block
            if sandwich.isSpicy && !zoomed {
                HStack {
                    Spacer()
                    Label("Spicy", systemImage: "flame.fill")
                    Spacer()
                }
                .padding(.all)
                .font(Font.headline.smallCaps())
                .background(Color.red)
                .foregroundColor(.yellow)
                .transition(.move(edge: .bottom))
            }


Answered by allagog in 620150022
It seems that the mis-alignment feature is fixed with Xcode 12 beta 2. 😌
You've probably seen elsewhere on this forum that there is an alignment bug on Label().
Just wait for next beta to get it corrected, it is not caused by your code.
Just wondering: did you find the resource files (sample data and images) for this project? If so, where can I find it?
I just downloaded and resized some images from the internet. Some people have shared GitHub repo links in this forum for their coding attempts, but I haven't tried any of those.

The following replies is pretty useful though:

I found the answer here https://developer.apple.com/design/human-interface-guidelines/ios/icons-and-images/image-size-and-resolution/ So if your images are within the 1x (100px by 100px), 2x (200px by 200px), and 3x (300px by 300px) restraints, they will be resized appropriately by the system. Pretty cool.

I found my own image resources and have started a project on GitHub https://github.com/davidakoontz/Sandwichs-iOS14-WWDC-Tutorial 

Good luck with it.
Accepted Answer
It seems that the mis-alignment feature is fixed with Xcode 12 beta 2. 😌
Why is the Spicy Banner mis-aligned?
 
 
Q