I have a "problem" with my iOS 17 app. My view don't correctly appear like it was before iOS 17 and now only shows the SFSymbol but not the Text.
NavigationView {
ZStack(alignment: .bottomTrailing) {
//my body
}
.toolbar {
ToolbarItem(placement: .navigationBarTrailing) {
NavigationLink(destination: StreakView(dayStreak: viewModel.dayStreak)) {
HStack {
Text("\(viewModel.dayStreak)")
Image(systemName: "flame.fill")
}
}
}
}
}
The Text is not shown on the screen... Why?
I don't know what to do to fix this problem...
Thank you for your responses <3