SwiftUI iOS 13.3 + Xcode 12 beta NavigationBarTitle problem

I am running Xcode 12 beta, using SwiftUI and compiling for target 13.3. I get the following error when trying to run the code on iPhone 13.5. I also tried compiling for target 13.5 and I get the same error.

If I remove "navigationBarTitle("textString", displayMode: inline) from all of my views, the bug goes away but I really want my NavigationViews to all have titles.

Does anyone know what this is about? Is there a workaround?

Code Block
dyld: Symbol not found: _$s7SwiftUI4ViewPAAE18navigationBarTitle_11displayModeQrqd_AA010NavigationE4ItemV0f7DisplayH0OtSyRdlFQOMQ
  Referenced from: /private/var/containers/Bundle/Application/E3A0F20E-5EDF-45CF-ABDC-ED5B57209848/***.app/***
  Expected in: /System/Library/Frameworks/SwiftUI.framework/SwiftUI
 in /private/var/containers/Bundle/Application/E3A0F20E-5EDF-45CF-ABDC-ED5B57209848/***.app/***
dyld: launch, loading dependent libraries
DYLD_LIBRARY_PATH=/usr/lib/system/introspection
DYLD_INSERT_LIBRARIES=/Developer/usr/lib/libBacktraceRecording.dylib:/Developer/usr/lib/libMainThreadChecker.dylib:/Developer/Library/PrivateFrameworks/DTDDISupport.framework/libViewDebuggerSupport.dylib


This used to work with the last beta of Xcode but stopped working with the current beta. The workaround is to use
Code Block
NavigationBarTitle(Text(string), displayMode: .inline) instead. Thanks.

Got same error but when I change
Code Block
.navigationBarTitle(Text(""), displayMode: .inline)
to

Code Block
NavigationBarTitle(Text(string), displayMode: .inline)


Doesn't work, its showing error
SwiftUI iOS 13.3 + Xcode 12 beta NavigationBarTitle problem
 
 
Q