You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In SwiftUI there is no straightforward way to customize the title for the Acknowledgment List view.
It would be nice to have an option to pass in the navigation title.
The text was updated successfully, but these errors were encountered:
For now, one hacky way is to provide a .toolbar along with the AcknowListSwiftUIView at the time of setting it up as a destination of a NavigationLink.
Here is a sample:
structContentView:View{varbody:someView{NavigationStack{VStack{NavigationLink("Show Acknowledgements"){AcknowListSwiftUIView(acknowledgements:[]).toolbar{ToolbarItem(placement:.principal){Text("3rd Party Libraries")}}}}.navigationTitle("My App")}}}
In
SwiftUI
there is no straightforward way to customize the title for the Acknowledgment List view.It would be nice to have an option to pass in the navigation title.
The text was updated successfully, but these errors were encountered: