New 'Label' component displaying incorrectly in SwiftUI

When making a Multiplatform app (it could be on all, I've only tested with Multiplatform so far) the Label component in SwiftUI doesn't display correctly.

I would share a screenshot but:
  1. The forums doesn't seem to support uploading of images

  2. When I try to attach a link to imgur, it says I have to remove the link.

Since I can't share a screenshot, I will do my best to describe it:
  • The SF Symbol appears raised compared to the text, almost like there's not enough room for the symbol

My Code:
Code Block swift
List(items, id:\.self) { item in
NavigationLink(destination: MyView()) {
    HStack {
        Label(item, systemImage: "circle")
        }
    }
}


Is this a known issue, if not: where should I report it?
Answered by OOPer in 615741022
Seems this is a known issue.

iOS & iPadOS 14 Beta Release Notes


SwiftUI

Known Issues

  • ...

  • A Label used with a symbol image might appear misaligned. (60193698)




Update:
Using an image and a text element embedded in a HStack works fine:
Code Block swift
HStack {
Image(systemName: "circle")
Text(item)
}

Use the Feedback Assistant to report this and other bugs:
https://feedbackassistant.apple.com
Accepted Answer
Seems this is a known issue.

iOS & iPadOS 14 Beta Release Notes


SwiftUI

Known Issues

  • ...

  • A Label used with a symbol image might appear misaligned. (60193698)




New 'Label' component displaying incorrectly in SwiftUI
 
 
Q