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:
.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
.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.