When you click on the button it takes you to a new view and puts a back button in the top left. I can\'t figure out what property controls the color of the back button. I tr
.navigationBarBackButtonHidden(true)
.navigationBarItems(leading:
Button(action: {presentation.wrappedValue.dismiss()}, label: {
HStack {
Image(systemName: "chevron.backward")
.foregroundColor(Color(UIColor.darkGray))
Text(username)
.foregroundColor(Color(UIColor.darkGray))
.font(UIHelper.largeSize())
}
})