Post

Replies

Boosts

Views

Activity

Reply to iOS 18 update causes toolbar display regression
The only work solution for me now is to remove Spacer in code above, see below: .toolbar { // header ToolbarItemGroup { Button { dismiss() } label: { Image(systemName: "chevron.backward") } .background(Color.yellow) Text(LocalizedStringKey("title")) .font( .system(size: 17) .weight(.semibold) ) .background(Color.yellow) Button { print("click") } label: { Text("Click") } .background(Color.yellow) } } But the elements will no surprisingly lie in the corner.
Oct ’24