无论我尝试了什么,我都无法让这个导航栏项目与这个视图上的大标题对齐?我尝试使用 Spacer() 填充或将其放置在 VStack 中,但均未将其向下推。我怎样才能正确对齐它?
var body: some View {
NavigationView {
//omitted
.navigationTitle("Exertion")
}
.navigationBarItems(
trailing:
Button(action: {
self.isShowingExertionCalendarSheet.toggle()
}) {
Image(systemName: "calendar")
.font(.system(size: 30, weight: .bold))
}
)
}
}