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:
Is there an easy workaround besides applying
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.
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.