以下是代码段:
TabView(selection: $selection) {
NavigationView {
List(0..<N, id: \.self) { index in ... }
.navigationTitle("Bold Title with leading alignment")
}
如何更改导航视图标题的格式,使其以非粗体显示在最顶部?对于所有其他标签,我使用:
var body: some View {
VStack
{
Text("ABC").font(.title) <-- centers at the very top with no-bold color
Spacer()
VStack(alignment: .leading) {