我想知道是否可以在swiftui的标签栏项中添加“ badgeValue”。
我尝试仅在所需标签栏项内的hstack内的标签图像旁边添加圆形形状,但无济于事。
TabView{
SomeView()
.tabItem{
VStack{
HStack{
Image(systemName: "camera.viewfinder")
Image(systemName: "circle") //neither image appears
}
Text( "View one")
}
}
.tag(0)
}
I want to end up with something like this :