SwiftUI sheets being bolded automatically?

I'm wondering if whether this is a known bug that is being fixed soon. It really irks me that when my sheets get presented, everything - SF icons, text gets bolded. If I swipe a bit, the bold goes away.

I'm presenting sheets from a navigation bar item like such:
Code Block swift
.navigationBarItems(leading:
        Button(action:{
          self.showingUser.toggle()
        }) {
          Image(systemName: "person")
            .resizable()
            .accentColor(.black)
            .frame(width: 25, height: 25)
        }
        .frame(width: 25, height: 45)
        .sheet(isPresented: $showingUser) {
          UserInfoView()
        })
      }


Is there an easy workaround besides applying
Code Block swift
.fontWeight(.regular)
to everything?

I'm currently on the latest iOS and Xcode Developer Betas. I did not have this problem on iOS 14 beta 1/Xcode 12 beta 1 and prior.
Answered by mzhang8087 in 628626022
.font(.body) was what I needed to apply to the first element of the view.
Accepted Answer
.font(.body) was what I needed to apply to the first element of the view.
I'm seeing the same behavior on my side. Seems to be a bug. Any better workaround?
The .sheet should be outside of .navigationBarItems

https://stackoverflow.com/questions/64385259/swiftui-sheets-bolded
SwiftUI sheets being bolded automatically?
 
 
Q