gpt4 book ai didi

swift - 如何在 swift ui 的导航 View 中的大标题下方添加副标题?

转载 作者:行者123 更新时间:2023-12-05 09:32:13 25 4
gpt4 key购买 nike

如何在以这种方式定义的大标题下添加副标题?

NavigationView{

VStack(){
//"Some code"
}
.navigationTitle("Analytics")
}

最佳答案

你可以尝试这样的事情:

 NavigationView{
VStack(){
//"Some code"
}
.navigationBarTitleDisplayMode(.large)
.toolbar {
ToolbarItem(placement: .navigationBarLeading) {
VStack {
Text("Title").font(.largeTitle).bold()
Text("Subtitle").font(.subheadline)
}
}
}
}

enter image description here

关于swift - 如何在 swift ui 的导航 View 中的大标题下方添加副标题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68269269/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com